Interface CreateSamlProviderResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateSamlProviderResponse.Builder,CreateSamlProviderResponse>,IamResponse.Builder,SdkBuilder<CreateSamlProviderResponse.Builder,CreateSamlProviderResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateSamlProviderResponse
public static interface CreateSamlProviderResponse.Builder extends IamResponse.Builder, SdkPojo, CopyableBuilder<CreateSamlProviderResponse.Builder,CreateSamlProviderResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateSamlProviderResponse.BuildersamlProviderArn(String samlProviderArn)The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.CreateSamlProviderResponse.Buildertags(Collection<Tag> tags)A list of tags that are attached to the new IAM SAML provider.CreateSamlProviderResponse.Buildertags(Consumer<Tag.Builder>... tags)A list of tags that are attached to the new IAM SAML provider.CreateSamlProviderResponse.Buildertags(Tag... tags)A list of tags that are attached to the new IAM SAML provider.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iam.model.IamResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
samlProviderArn
CreateSamlProviderResponse.Builder samlProviderArn(String samlProviderArn)
The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.
- Parameters:
samlProviderArn- The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateSamlProviderResponse.Builder tags(Collection<Tag> tags)
A list of tags that are attached to the new IAM SAML provider. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
- Parameters:
tags- A list of tags that are attached to the new IAM SAML provider. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateSamlProviderResponse.Builder tags(Tag... tags)
A list of tags that are attached to the new IAM SAML provider. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
- Parameters:
tags- A list of tags that are attached to the new IAM SAML provider. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateSamlProviderResponse.Builder tags(Consumer<Tag.Builder>... tags)
A list of tags that are attached to the new IAM SAML provider. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-