Interface ImplicitDeny.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImplicitDeny.Builder,ImplicitDeny>,SdkBuilder<ImplicitDeny.Builder,ImplicitDeny>,SdkPojo
- Enclosing class:
- ImplicitDeny
public static interface ImplicitDeny.Builder extends SdkPojo, CopyableBuilder<ImplicitDeny.Builder,ImplicitDeny>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImplicitDeny.Builderpolicies(Collection<Policy> policies)Policies that don't contain a matching allow or deny statement for the specified action on the specified resource.ImplicitDeny.Builderpolicies(Consumer<Policy.Builder>... policies)Policies that don't contain a matching allow or deny statement for the specified action on the specified resource.ImplicitDeny.Builderpolicies(Policy... policies)Policies that don't contain a matching allow or deny statement for the specified action on the specified resource.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
policies
ImplicitDeny.Builder policies(Collection<Policy> policies)
Policies that don't contain a matching allow or deny statement for the specified action on the specified resource.
- Parameters:
policies- Policies that don't contain a matching allow or deny statement for the specified action on the specified resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
policies
ImplicitDeny.Builder policies(Policy... policies)
Policies that don't contain a matching allow or deny statement for the specified action on the specified resource.
- Parameters:
policies- Policies that don't contain a matching allow or deny statement for the specified action on the specified resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
policies
ImplicitDeny.Builder policies(Consumer<Policy.Builder>... policies)
Policies that don't contain a matching allow or deny statement for the specified action on the specified resource.
This is a convenience method that creates an instance of thePolicy.Builderavoiding the need to create one manually viaPolicy.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#policies(List.) - Parameters:
policies- a consumer that will call methods onPolicy.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#policies(java.util.Collection)
-
-