Class ResourceTargetDefinition
- java.lang.Object
-
- software.amazon.awssdk.services.cloudformation.model.ResourceTargetDefinition
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<ResourceTargetDefinition.Builder,ResourceTargetDefinition>
@Generated("software.amazon.awssdk:codegen") public final class ResourceTargetDefinition extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ResourceTargetDefinition.Builder,ResourceTargetDefinition>
The field that CloudFormation will change, such as the name of a resource's property, and whether the resource will be recreated.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ResourceTargetDefinition.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceAttribute
attribute()
Indicates which resource attribute is triggering this update, such as a change in the resource attribute'sMetadata
,Properties
, orTags
.String
attributeAsString()
Indicates which resource attribute is triggering this update, such as a change in the resource attribute'sMetadata
,Properties
, orTags
.static ResourceTargetDefinition.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
name()
If theAttribute
value isProperties
, the name of the property.RequiresRecreation
requiresRecreation()
If theAttribute
value isProperties
, indicates whether a change to this property causes the resource to be recreated.String
requiresRecreationAsString()
If theAttribute
value isProperties
, indicates whether a change to this property causes the resource to be recreated.List<SdkField<?>>
sdkFields()
static Class<? extends ResourceTargetDefinition.Builder>
serializableBuilderClass()
ResourceTargetDefinition.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
attribute
public final ResourceAttribute attribute()
Indicates which resource attribute is triggering this update, such as a change in the resource attribute's
Metadata
,Properties
, orTags
.If the service returns an enum value that is not available in the current SDK version,
attribute
will returnResourceAttribute.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromattributeAsString()
.- Returns:
- Indicates which resource attribute is triggering this update, such as a change in the resource
attribute's
Metadata
,Properties
, orTags
. - See Also:
ResourceAttribute
-
attributeAsString
public final String attributeAsString()
Indicates which resource attribute is triggering this update, such as a change in the resource attribute's
Metadata
,Properties
, orTags
.If the service returns an enum value that is not available in the current SDK version,
attribute
will returnResourceAttribute.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromattributeAsString()
.- Returns:
- Indicates which resource attribute is triggering this update, such as a change in the resource
attribute's
Metadata
,Properties
, orTags
. - See Also:
ResourceAttribute
-
name
public final String name()
If the
Attribute
value isProperties
, the name of the property. For all other attributes, the value is null.- Returns:
- If the
Attribute
value isProperties
, the name of the property. For all other attributes, the value is null.
-
requiresRecreation
public final RequiresRecreation requiresRecreation()
If the
Attribute
value isProperties
, indicates whether a change to this property causes the resource to be recreated. The value can beNever
,Always
, orConditionally
. To determine the conditions for aConditionally
recreation, see the update behavior for that property in the CloudFormation User Guide.If the service returns an enum value that is not available in the current SDK version,
requiresRecreation
will returnRequiresRecreation.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromrequiresRecreationAsString()
.- Returns:
- If the
Attribute
value isProperties
, indicates whether a change to this property causes the resource to be recreated. The value can beNever
,Always
, orConditionally
. To determine the conditions for aConditionally
recreation, see the update behavior for that property in the CloudFormation User Guide. - See Also:
RequiresRecreation
-
requiresRecreationAsString
public final String requiresRecreationAsString()
If the
Attribute
value isProperties
, indicates whether a change to this property causes the resource to be recreated. The value can beNever
,Always
, orConditionally
. To determine the conditions for aConditionally
recreation, see the update behavior for that property in the CloudFormation User Guide.If the service returns an enum value that is not available in the current SDK version,
requiresRecreation
will returnRequiresRecreation.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromrequiresRecreationAsString()
.- Returns:
- If the
Attribute
value isProperties
, indicates whether a change to this property causes the resource to be recreated. The value can beNever
,Always
, orConditionally
. To determine the conditions for aConditionally
recreation, see the update behavior for that property in the CloudFormation User Guide. - See Also:
RequiresRecreation
-
toBuilder
public ResourceTargetDefinition.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<ResourceTargetDefinition.Builder,ResourceTargetDefinition>
-
builder
public static ResourceTargetDefinition.Builder builder()
-
serializableBuilderClass
public static Class<? extends ResourceTargetDefinition.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-