Interface StackResourceDetail.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<StackResourceDetail.Builder,StackResourceDetail>
,SdkBuilder<StackResourceDetail.Builder,StackResourceDetail>
,SdkPojo
- Enclosing class:
- StackResourceDetail
public static interface StackResourceDetail.Builder extends SdkPojo, CopyableBuilder<StackResourceDetail.Builder,StackResourceDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StackResourceDetail.Builder
description(String description)
User defined description associated with the resource.default StackResourceDetail.Builder
driftInformation(Consumer<StackResourceDriftInformation.Builder> driftInformation)
Information about whether the resource's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters.StackResourceDetail.Builder
driftInformation(StackResourceDriftInformation driftInformation)
Information about whether the resource's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters.StackResourceDetail.Builder
lastUpdatedTimestamp(Instant lastUpdatedTimestamp)
Time the status was updated.StackResourceDetail.Builder
logicalResourceId(String logicalResourceId)
The logical name of the resource specified in the template.StackResourceDetail.Builder
metadata(String metadata)
The content of theMetadata
attribute declared for the resource.default StackResourceDetail.Builder
moduleInfo(Consumer<ModuleInfo.Builder> moduleInfo)
Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.StackResourceDetail.Builder
moduleInfo(ModuleInfo moduleInfo)
Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.StackResourceDetail.Builder
physicalResourceId(String physicalResourceId)
The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.StackResourceDetail.Builder
resourceStatus(String resourceStatus)
Current status of the resource.StackResourceDetail.Builder
resourceStatus(ResourceStatus resourceStatus)
Current status of the resource.StackResourceDetail.Builder
resourceStatusReason(String resourceStatusReason)
Success/failure message associated with the resource.StackResourceDetail.Builder
resourceType(String resourceType)
Type of resource.StackResourceDetail.Builder
stackId(String stackId)
Unique identifier of the stack.StackResourceDetail.Builder
stackName(String stackName)
The name associated with the stack.-
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
-
stackName
StackResourceDetail.Builder stackName(String stackName)
The name associated with the stack.
- Parameters:
stackName
- The name associated with the stack.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stackId
StackResourceDetail.Builder stackId(String stackId)
Unique identifier of the stack.
- Parameters:
stackId
- Unique identifier of the stack.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logicalResourceId
StackResourceDetail.Builder logicalResourceId(String logicalResourceId)
The logical name of the resource specified in the template.
- Parameters:
logicalResourceId
- The logical name of the resource specified in the template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
physicalResourceId
StackResourceDetail.Builder physicalResourceId(String physicalResourceId)
The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.
- Parameters:
physicalResourceId
- The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceType
StackResourceDetail.Builder resourceType(String resourceType)
Type of resource. For more information, see Amazon Web Services resource and property types reference in the CloudFormation User Guide.
- Parameters:
resourceType
- Type of resource. For more information, see Amazon Web Services resource and property types reference in the CloudFormation User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedTimestamp
StackResourceDetail.Builder lastUpdatedTimestamp(Instant lastUpdatedTimestamp)
Time the status was updated.
- Parameters:
lastUpdatedTimestamp
- Time the status was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceStatus
StackResourceDetail.Builder resourceStatus(String resourceStatus)
Current status of the resource.
- Parameters:
resourceStatus
- Current status of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ResourceStatus
,ResourceStatus
-
resourceStatus
StackResourceDetail.Builder resourceStatus(ResourceStatus resourceStatus)
Current status of the resource.
- Parameters:
resourceStatus
- Current status of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ResourceStatus
,ResourceStatus
-
resourceStatusReason
StackResourceDetail.Builder resourceStatusReason(String resourceStatusReason)
Success/failure message associated with the resource.
- Parameters:
resourceStatusReason
- Success/failure message associated with the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
StackResourceDetail.Builder description(String description)
User defined description associated with the resource.
- Parameters:
description
- User defined description associated with the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metadata
StackResourceDetail.Builder metadata(String metadata)
The content of the
Metadata
attribute declared for the resource. For more information, see Metadata attribute in the CloudFormation User Guide.- Parameters:
metadata
- The content of theMetadata
attribute declared for the resource. For more information, see Metadata attribute in the CloudFormation User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
driftInformation
StackResourceDetail.Builder driftInformation(StackResourceDriftInformation driftInformation)
Information about whether the resource's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detect unmanaged configuration changes to stacks and resources with drift detection.
- Parameters:
driftInformation
- Information about whether the resource's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detect unmanaged configuration changes to stacks and resources with drift detection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
driftInformation
default StackResourceDetail.Builder driftInformation(Consumer<StackResourceDriftInformation.Builder> driftInformation)
Information about whether the resource's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detect unmanaged configuration changes to stacks and resources with drift detection.
This is a convenience method that creates an instance of theStackResourceDriftInformation.Builder
avoiding the need to create one manually viaStackResourceDriftInformation.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todriftInformation(StackResourceDriftInformation)
.- Parameters:
driftInformation
- a consumer that will call methods onStackResourceDriftInformation.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
driftInformation(StackResourceDriftInformation)
-
moduleInfo
StackResourceDetail.Builder moduleInfo(ModuleInfo moduleInfo)
Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.
- Parameters:
moduleInfo
- Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
moduleInfo
default StackResourceDetail.Builder moduleInfo(Consumer<ModuleInfo.Builder> moduleInfo)
Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.
This is a convenience method that creates an instance of theModuleInfo.Builder
avoiding the need to create one manually viaModuleInfo.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tomoduleInfo(ModuleInfo)
.- Parameters:
moduleInfo
- a consumer that will call methods onModuleInfo.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
moduleInfo(ModuleInfo)
-
-