Class: Aws::WAF::Types::CreateWebACLMigrationStackRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::CreateWebACLMigrationStackRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ignore_unsupported_type ⇒ Boolean
Indicates whether to exclude entities that can't be migrated or to stop the migration.
-
#s3_bucket_name ⇒ String
The name of the Amazon S3 bucket to store the CloudFormation template in.
-
#web_acl_id ⇒ String
The UUID of the WAF Classic web ACL that you want to migrate to WAF v2.
Instance Attribute Details
#ignore_unsupported_type ⇒ Boolean
Indicates whether to exclude entities that can't be migrated or to stop the migration. Set this to true to ignore unsupported entities in the web ACL during the migration. Otherwise, if AWS WAF encounters unsupported entities, it stops the process and throws an exception.
1000 1001 1002 1003 1004 1005 1006 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1000 class CreateWebACLMigrationStackRequest < Struct.new( :web_acl_id, :s3_bucket_name, :ignore_unsupported_type) SENSITIVE = [] include Aws::Structure end |
#s3_bucket_name ⇒ String
The name of the Amazon S3 bucket to store the CloudFormation template in. The S3 bucket must be configured as follows for the migration:
The bucket name must start with
aws-waf-migration-
. For example,aws-waf-migration-my-web-acl
.The bucket must be in the Region where you are deploying the template. For example, for a web ACL in us-west-2, you must use an Amazon S3 bucket in us-west-2 and you must deploy the template stack to us-west-2.
The bucket policies must permit the migration process to write data. For listings of the bucket policies, see the Examples section.
1000 1001 1002 1003 1004 1005 1006 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1000 class CreateWebACLMigrationStackRequest < Struct.new( :web_acl_id, :s3_bucket_name, :ignore_unsupported_type) SENSITIVE = [] include Aws::Structure end |
#web_acl_id ⇒ String
The UUID of the WAF Classic web ACL that you want to migrate to WAF v2.
1000 1001 1002 1003 1004 1005 1006 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1000 class CreateWebACLMigrationStackRequest < Struct.new( :web_acl_id, :s3_bucket_name, :ignore_unsupported_type) SENSITIVE = [] include Aws::Structure end |