Interface CreateOpenIdConnectProviderResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateOpenIdConnectProviderResponse.Builder,CreateOpenIdConnectProviderResponse>,IamResponse.Builder,SdkBuilder<CreateOpenIdConnectProviderResponse.Builder,CreateOpenIdConnectProviderResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateOpenIdConnectProviderResponse
public static interface CreateOpenIdConnectProviderResponse.Builder extends IamResponse.Builder, SdkPojo, CopyableBuilder<CreateOpenIdConnectProviderResponse.Builder,CreateOpenIdConnectProviderResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateOpenIdConnectProviderResponse.BuilderopenIDConnectProviderArn(String openIDConnectProviderArn)The Amazon Resource Name (ARN) of the new IAM OpenID Connect provider that is created.CreateOpenIdConnectProviderResponse.Buildertags(Collection<Tag> tags)A list of tags that are attached to the new IAM OIDC provider.CreateOpenIdConnectProviderResponse.Buildertags(Consumer<Tag.Builder>... tags)A list of tags that are attached to the new IAM OIDC provider.CreateOpenIdConnectProviderResponse.Buildertags(Tag... tags)A list of tags that are attached to the new IAM OIDC 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
-
openIDConnectProviderArn
CreateOpenIdConnectProviderResponse.Builder openIDConnectProviderArn(String openIDConnectProviderArn)
The Amazon Resource Name (ARN) of the new IAM OpenID Connect provider that is created. For more information, see OpenIDConnectProviderListEntry.
- Parameters:
openIDConnectProviderArn- The Amazon Resource Name (ARN) of the new IAM OpenID Connect provider that is created. For more information, see OpenIDConnectProviderListEntry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateOpenIdConnectProviderResponse.Builder tags(Collection<Tag> tags)
A list of tags that are attached to the new IAM OIDC 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 OIDC 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
CreateOpenIdConnectProviderResponse.Builder tags(Tag... tags)
A list of tags that are attached to the new IAM OIDC 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 OIDC 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
CreateOpenIdConnectProviderResponse.Builder tags(Consumer<Tag.Builder>... tags)
A list of tags that are attached to the new IAM OIDC 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)
-
-