Interface GetOpenIdConnectProviderResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetOpenIdConnectProviderResponse.Builder,GetOpenIdConnectProviderResponse>,IamResponse.Builder,SdkBuilder<GetOpenIdConnectProviderResponse.Builder,GetOpenIdConnectProviderResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetOpenIdConnectProviderResponse
public static interface GetOpenIdConnectProviderResponse.Builder extends IamResponse.Builder, SdkPojo, CopyableBuilder<GetOpenIdConnectProviderResponse.Builder,GetOpenIdConnectProviderResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetOpenIdConnectProviderResponse.BuilderclientIDList(String... clientIDList)A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object.GetOpenIdConnectProviderResponse.BuilderclientIDList(Collection<String> clientIDList)A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object.GetOpenIdConnectProviderResponse.BuildercreateDate(Instant createDate)The date and time when the IAM OIDC provider resource object was created in the Amazon Web Services account.GetOpenIdConnectProviderResponse.Buildertags(Collection<Tag> tags)A list of tags that are attached to the specified IAM OIDC provider.GetOpenIdConnectProviderResponse.Buildertags(Consumer<Tag.Builder>... tags)A list of tags that are attached to the specified IAM OIDC provider.GetOpenIdConnectProviderResponse.Buildertags(Tag... tags)A list of tags that are attached to the specified IAM OIDC provider.GetOpenIdConnectProviderResponse.BuilderthumbprintList(String... thumbprintList)A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object.GetOpenIdConnectProviderResponse.BuilderthumbprintList(Collection<String> thumbprintList)A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object.GetOpenIdConnectProviderResponse.Builderurl(String url)The URL that the IAM OIDC provider resource object is associated with.-
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
-
url
GetOpenIdConnectProviderResponse.Builder url(String url)
The URL that the IAM OIDC provider resource object is associated with. For more information, see CreateOpenIDConnectProvider.
- Parameters:
url- The URL that the IAM OIDC provider resource object is associated with. For more information, see CreateOpenIDConnectProvider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientIDList
GetOpenIdConnectProviderResponse.Builder clientIDList(Collection<String> clientIDList)
A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.
- Parameters:
clientIDList- A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientIDList
GetOpenIdConnectProviderResponse.Builder clientIDList(String... clientIDList)
A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.
- Parameters:
clientIDList- A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thumbprintList
GetOpenIdConnectProviderResponse.Builder thumbprintList(Collection<String> thumbprintList)
A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.
- Parameters:
thumbprintList- A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thumbprintList
GetOpenIdConnectProviderResponse.Builder thumbprintList(String... thumbprintList)
A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.
- Parameters:
thumbprintList- A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createDate
GetOpenIdConnectProviderResponse.Builder createDate(Instant createDate)
The date and time when the IAM OIDC provider resource object was created in the Amazon Web Services account.
- Parameters:
createDate- The date and time when the IAM OIDC provider resource object was created in the Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
GetOpenIdConnectProviderResponse.Builder tags(Collection<Tag> tags)
A list of tags that are attached to the specified 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 specified 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
GetOpenIdConnectProviderResponse.Builder tags(Tag... tags)
A list of tags that are attached to the specified 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 specified 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
GetOpenIdConnectProviderResponse.Builder tags(Consumer<Tag.Builder>... tags)
A list of tags that are attached to the specified 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)
-
-