Interface RegisterTypeRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CloudFormationRequest.Builder,CopyableBuilder<RegisterTypeRequest.Builder,RegisterTypeRequest>,SdkBuilder<RegisterTypeRequest.Builder,RegisterTypeRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- RegisterTypeRequest
@Mutable @NotThreadSafe public static interface RegisterTypeRequest.Builder extends CloudFormationRequest.Builder, SdkPojo, CopyableBuilder<RegisterTypeRequest.Builder,RegisterTypeRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description RegisterTypeRequest.BuilderclientRequestToken(String clientRequestToken)A unique identifier that acts as an idempotency key for this registration request.RegisterTypeRequest.BuilderexecutionRoleArn(String executionRoleArn)The Amazon Resource Name (ARN) of the IAM role for CloudFormation to assume when invoking the extension.default RegisterTypeRequest.BuilderloggingConfig(Consumer<LoggingConfig.Builder> loggingConfig)Specifies logging configuration information for an extension.RegisterTypeRequest.BuilderloggingConfig(LoggingConfig loggingConfig)Specifies logging configuration information for an extension.RegisterTypeRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)RegisterTypeRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)RegisterTypeRequest.BuilderschemaHandlerPackage(String schemaHandlerPackage)A URL to the S3 bucket that contains the extension project package that contains the necessary files for the extension you want to register.RegisterTypeRequest.Buildertype(String type)The kind of extension.RegisterTypeRequest.Buildertype(RegistryType type)The kind of extension.RegisterTypeRequest.BuildertypeName(String typeName)The name of the extension being registered.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cloudformation.model.CloudFormationRequest.Builder
build
-
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
-
type
RegisterTypeRequest.Builder type(String type)
The kind of extension.
- Parameters:
type- The kind of extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RegistryType,RegistryType
-
type
RegisterTypeRequest.Builder type(RegistryType type)
The kind of extension.
- Parameters:
type- The kind of extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RegistryType,RegistryType
-
typeName
RegisterTypeRequest.Builder typeName(String typeName)
The name of the extension being registered.
We suggest that extension names adhere to the following patterns:
-
For resource types,
company_or_organization::service::type. -
For modules,
company_or_organization::service::type::MODULE. -
For Hooks,
MyCompany::Testing::MyTestHook.
The following organization namespaces are reserved and can't be used in your extension names:
-
Alexa -
AMZN -
Amazon -
AWS -
Custom -
Dev
- Parameters:
typeName- The name of the extension being registered.We suggest that extension names adhere to the following patterns:
-
For resource types,
company_or_organization::service::type. -
For modules,
company_or_organization::service::type::MODULE. -
For Hooks,
MyCompany::Testing::MyTestHook.
The following organization namespaces are reserved and can't be used in your extension names:
-
Alexa -
AMZN -
Amazon -
AWS -
Custom -
Dev
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
schemaHandlerPackage
RegisterTypeRequest.Builder schemaHandlerPackage(String schemaHandlerPackage)
A URL to the S3 bucket that contains the extension project package that contains the necessary files for the extension you want to register.
For information about generating a schema handler package for the extension you want to register, see submit in the CloudFormation Command Line Interface (CLI) User Guide.
The user registering the extension must be able to access the package in the S3 bucket. That's, the user needs to have GetObject permissions for the schema handler package. For more information, see Actions, Resources, and Condition Keys for Amazon S3 in the Identity and Access Management User Guide.
- Parameters:
schemaHandlerPackage- A URL to the S3 bucket that contains the extension project package that contains the necessary files for the extension you want to register.For information about generating a schema handler package for the extension you want to register, see submit in the CloudFormation Command Line Interface (CLI) User Guide.
The user registering the extension must be able to access the package in the S3 bucket. That's, the user needs to have GetObject permissions for the schema handler package. For more information, see Actions, Resources, and Condition Keys for Amazon S3 in the Identity and Access Management User Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
loggingConfig
RegisterTypeRequest.Builder loggingConfig(LoggingConfig loggingConfig)
Specifies logging configuration information for an extension.
- Parameters:
loggingConfig- Specifies logging configuration information for an extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
loggingConfig
default RegisterTypeRequest.Builder loggingConfig(Consumer<LoggingConfig.Builder> loggingConfig)
Specifies logging configuration information for an extension.
This is a convenience method that creates an instance of theLoggingConfig.Builderavoiding the need to create one manually viaLoggingConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tologgingConfig(LoggingConfig).- Parameters:
loggingConfig- a consumer that will call methods onLoggingConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
loggingConfig(LoggingConfig)
-
executionRoleArn
RegisterTypeRequest.Builder executionRoleArn(String executionRoleArn)
The Amazon Resource Name (ARN) of the IAM role for CloudFormation to assume when invoking the extension.
For CloudFormation to assume the specified execution role, the role must contain a trust relationship with the CloudFormation service principal (
resources.cloudformation.amazonaws.com). For more information about adding trust relationships, see Modifying a role trust policy in the Identity and Access Management User Guide.If your extension calls Amazon Web Services APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those Amazon Web Services APIs, and provision that execution role in your account. When CloudFormation needs to invoke the resource type handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the resource type handler, thereby supplying your resource type with the appropriate credentials.
- Parameters:
executionRoleArn- The Amazon Resource Name (ARN) of the IAM role for CloudFormation to assume when invoking the extension.For CloudFormation to assume the specified execution role, the role must contain a trust relationship with the CloudFormation service principal (
resources.cloudformation.amazonaws.com). For more information about adding trust relationships, see Modifying a role trust policy in the Identity and Access Management User Guide.If your extension calls Amazon Web Services APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those Amazon Web Services APIs, and provision that execution role in your account. When CloudFormation needs to invoke the resource type handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the resource type handler, thereby supplying your resource type with the appropriate credentials.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientRequestToken
RegisterTypeRequest.Builder clientRequestToken(String clientRequestToken)
A unique identifier that acts as an idempotency key for this registration request. Specifying a client request token prevents CloudFormation from generating more than one version of an extension from the same registration request, even if the request is submitted multiple times.
- Parameters:
clientRequestToken- A unique identifier that acts as an idempotency key for this registration request. Specifying a client request token prevents CloudFormation from generating more than one version of an extension from the same registration request, even if the request is submitted multiple times.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
RegisterTypeRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
RegisterTypeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-