Interface TypeConfigurationIdentifier.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TypeConfigurationIdentifier.Builder,TypeConfigurationIdentifier>,SdkBuilder<TypeConfigurationIdentifier.Builder,TypeConfigurationIdentifier>,SdkPojo
- Enclosing class:
- TypeConfigurationIdentifier
public static interface TypeConfigurationIdentifier.Builder extends SdkPojo, CopyableBuilder<TypeConfigurationIdentifier.Builder,TypeConfigurationIdentifier>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeConfigurationIdentifier.Buildertype(String type)The type of extension.TypeConfigurationIdentifier.Buildertype(ThirdPartyType type)The type of extension.TypeConfigurationIdentifier.BuildertypeArn(String typeArn)The Amazon Resource Name (ARN) for the extension, in this account and Region.TypeConfigurationIdentifier.BuildertypeConfigurationAlias(String typeConfigurationAlias)The alias specified for this configuration, if one was specified when the configuration was set.TypeConfigurationIdentifier.BuildertypeConfigurationArn(String typeConfigurationArn)The Amazon Resource Name (ARN) for the configuration, in this account and Region.TypeConfigurationIdentifier.BuildertypeName(String typeName)The name of the extension type to which this configuration applies.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
typeArn
TypeConfigurationIdentifier.Builder typeArn(String typeArn)
The Amazon Resource Name (ARN) for the extension, in this account and Region.
For public extensions, this will be the ARN assigned when you call the ActivateType API operation in this account and Region. For private extensions, this will be the ARN assigned when you call the RegisterType API operation in this account and Region.
- Parameters:
typeArn- The Amazon Resource Name (ARN) for the extension, in this account and Region.For public extensions, this will be the ARN assigned when you call the ActivateType API operation in this account and Region. For private extensions, this will be the ARN assigned when you call the RegisterType API operation in this account and Region.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typeConfigurationAlias
TypeConfigurationIdentifier.Builder typeConfigurationAlias(String typeConfigurationAlias)
The alias specified for this configuration, if one was specified when the configuration was set.
- Parameters:
typeConfigurationAlias- The alias specified for this configuration, if one was specified when the configuration was set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typeConfigurationArn
TypeConfigurationIdentifier.Builder typeConfigurationArn(String typeConfigurationArn)
The Amazon Resource Name (ARN) for the configuration, in this account and Region.
- Parameters:
typeConfigurationArn- The Amazon Resource Name (ARN) for the configuration, in this account and Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
TypeConfigurationIdentifier.Builder type(String type)
The type of extension.
- Parameters:
type- The type of extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ThirdPartyType,ThirdPartyType
-
type
TypeConfigurationIdentifier.Builder type(ThirdPartyType type)
The type of extension.
- Parameters:
type- The type of extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ThirdPartyType,ThirdPartyType
-
typeName
TypeConfigurationIdentifier.Builder typeName(String typeName)
The name of the extension type to which this configuration applies.
- Parameters:
typeName- The name of the extension type to which this configuration applies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-