Interface ScanFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScanFilter.Builder,ScanFilter>,SdkBuilder<ScanFilter.Builder,ScanFilter>,SdkPojo
- Enclosing class:
- ScanFilter
@Mutable @NotThreadSafe public static interface ScanFilter.Builder extends SdkPojo, CopyableBuilder<ScanFilter.Builder,ScanFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScanFilter.Buildertypes(String... types)An array of strings where each string represents an Amazon Web Services resource type you want to scan.ScanFilter.Buildertypes(Collection<String> types)An array of strings where each string represents an Amazon Web Services resource type you want to scan.-
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
-
types
ScanFilter.Builder types(Collection<String> types)
An array of strings where each string represents an Amazon Web Services resource type you want to scan. Each string defines the resource type using the format
AWS::ServiceName::ResourceType, for example,AWS::DynamoDB::Table. For the full list of supported resource types, see the Resource type support table in the CloudFormation User Guide.To scan all resource types within a service, you can use a wildcard, represented by an asterisk (
*). You can place an asterisk at only the end of the string, for example,AWS::S3::*.- Parameters:
types- An array of strings where each string represents an Amazon Web Services resource type you want to scan. Each string defines the resource type using the formatAWS::ServiceName::ResourceType, for example,AWS::DynamoDB::Table. For the full list of supported resource types, see the Resource type support table in the CloudFormation User Guide.To scan all resource types within a service, you can use a wildcard, represented by an asterisk (
*). You can place an asterisk at only the end of the string, for example,AWS::S3::*.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
types
ScanFilter.Builder types(String... types)
An array of strings where each string represents an Amazon Web Services resource type you want to scan. Each string defines the resource type using the format
AWS::ServiceName::ResourceType, for example,AWS::DynamoDB::Table. For the full list of supported resource types, see the Resource type support table in the CloudFormation User Guide.To scan all resource types within a service, you can use a wildcard, represented by an asterisk (
*). You can place an asterisk at only the end of the string, for example,AWS::S3::*.- Parameters:
types- An array of strings where each string represents an Amazon Web Services resource type you want to scan. Each string defines the resource type using the formatAWS::ServiceName::ResourceType, for example,AWS::DynamoDB::Table. For the full list of supported resource types, see the Resource type support table in the CloudFormation User Guide.To scan all resource types within a service, you can use a wildcard, represented by an asterisk (
*). You can place an asterisk at only the end of the string, for example,AWS::S3::*.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-