Interface ScannedResourceIdentifier.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScannedResourceIdentifier.Builder,ScannedResourceIdentifier>,SdkBuilder<ScannedResourceIdentifier.Builder,ScannedResourceIdentifier>,SdkPojo
- Enclosing class:
- ScannedResourceIdentifier
@Mutable @NotThreadSafe public static interface ScannedResourceIdentifier.Builder extends SdkPojo, CopyableBuilder<ScannedResourceIdentifier.Builder,ScannedResourceIdentifier>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScannedResourceIdentifier.BuilderresourceIdentifier(Map<String,String> resourceIdentifier)A list of up to 256 key-value pairs that identifies the scanned resource.ScannedResourceIdentifier.BuilderresourceType(String resourceType)The type of the resource, such asAWS::DynamoDB::Table.-
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
-
resourceType
ScannedResourceIdentifier.Builder resourceType(String resourceType)
The type of the resource, such as
AWS::DynamoDB::Table. For the list of supported resources, see Resource type support for imports and drift detection In the CloudFormation User Guide.- Parameters:
resourceType- The type of the resource, such asAWS::DynamoDB::Table. For the list of supported resources, see Resource type support for imports and drift detection In the CloudFormation User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resourceIdentifier
ScannedResourceIdentifier.Builder resourceIdentifier(Map<String,String> resourceIdentifier)
A list of up to 256 key-value pairs that identifies the scanned resource. The key is the name of one of the primary identifiers for the resource. (Primary identifiers are specified in the
primaryIdentifierlist in the resource schema.) The value is the value of that primary identifier. For example, for aAWS::DynamoDB::Tableresource, the primary identifiers isTableNameso the key-value pair could be"TableName": "MyDDBTable". For more information, see primaryIdentifier in the CloudFormation Command Line Interface (CLI) User Guide.- Parameters:
resourceIdentifier- A list of up to 256 key-value pairs that identifies the scanned resource. The key is the name of one of the primary identifiers for the resource. (Primary identifiers are specified in theprimaryIdentifierlist in the resource schema.) The value is the value of that primary identifier. For example, for aAWS::DynamoDB::Tableresource, the primary identifiers isTableNameso the key-value pair could be"TableName": "MyDDBTable". For more information, see primaryIdentifier in the CloudFormation Command Line Interface (CLI) User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-