public static interface RulesConfigurationType.Builder extends CopyableBuilder<RulesConfigurationType.Builder,RulesConfigurationType>
Modifier and Type | Method and Description |
---|---|
RulesConfigurationType.Builder |
rules(Collection<MappingRule> rules)
An array of rules.
|
RulesConfigurationType.Builder |
rules(Consumer<MappingRule.Builder>... rules)
An array of rules.
|
RulesConfigurationType.Builder |
rules(MappingRule... rules)
An array of rules.
|
copy
apply, build
RulesConfigurationType.Builder rules(Collection<MappingRule> rules)
An array of rules. You can specify up to 25 rules per identity provider.
Rules are evaluated in order. The first one to match specifies the role.
rules
- An array of rules. You can specify up to 25 rules per identity provider.
Rules are evaluated in order. The first one to match specifies the role.
RulesConfigurationType.Builder rules(MappingRule... rules)
An array of rules. You can specify up to 25 rules per identity provider.
Rules are evaluated in order. The first one to match specifies the role.
rules
- An array of rules. You can specify up to 25 rules per identity provider.
Rules are evaluated in order. The first one to match specifies the role.
RulesConfigurationType.Builder rules(Consumer<MappingRule.Builder>... rules)
An array of rules. You can specify up to 25 rules per identity provider.
Rules are evaluated in order. The first one to match specifies the role.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #rules(List)
.rules
- a consumer that will call methods on List.Builder
#rules(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.