Class: Aws::SecurityHub::Types::AwsS3BucketDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsS3BucketDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
When making an API call, you may pass AwsS3BucketDetails data as a hash:
{
owner_id: "NonEmptyString",
owner_name: "NonEmptyString",
created_at: "NonEmptyString",
server_side_encryption_configuration: {
rules: [
{
apply_server_side_encryption_by_default: {
sse_algorithm: "NonEmptyString",
kms_master_key_id: "NonEmptyString",
},
},
],
},
public_access_block_configuration: {
block_public_acls: false,
block_public_policy: false,
ignore_public_acls: false,
restrict_public_buckets: false,
},
}
The details of an Amazon S3 bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_at ⇒ String
Indicates when the S3 bucket was created.
-
#owner_id ⇒ String
The canonical user ID of the owner of the S3 bucket.
-
#owner_name ⇒ String
The display name of the owner of the S3 bucket.
-
#public_access_block_configuration ⇒ Types::AwsS3AccountPublicAccessBlockDetails
Provides information about the Amazon S3 Public Access Block configuration for the S3 bucket.
-
#server_side_encryption_configuration ⇒ Types::AwsS3BucketServerSideEncryptionConfiguration
The encryption rules that are applied to the S3 bucket.
Instance Attribute Details
#created_at ⇒ String
Indicates when the S3 bucket was created.
Uses the date-time
format specified in RFC 3339 section 5.6,
Internet Date/Time Format. The value cannot contain spaces. For
example, 2020-03-22T13:22:13.933Z
.
9871 9872 9873 9874 9875 9876 9877 9878 9879 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 9871 class AwsS3BucketDetails < Struct.new( :owner_id, :owner_name, :created_at, :server_side_encryption_configuration, :public_access_block_configuration) SENSITIVE = [] include Aws::Structure end |
#owner_id ⇒ String
The canonical user ID of the owner of the S3 bucket.
9871 9872 9873 9874 9875 9876 9877 9878 9879 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 9871 class AwsS3BucketDetails < Struct.new( :owner_id, :owner_name, :created_at, :server_side_encryption_configuration, :public_access_block_configuration) SENSITIVE = [] include Aws::Structure end |
#owner_name ⇒ String
The display name of the owner of the S3 bucket.
9871 9872 9873 9874 9875 9876 9877 9878 9879 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 9871 class AwsS3BucketDetails < Struct.new( :owner_id, :owner_name, :created_at, :server_side_encryption_configuration, :public_access_block_configuration) SENSITIVE = [] include Aws::Structure end |
#public_access_block_configuration ⇒ Types::AwsS3AccountPublicAccessBlockDetails
Provides information about the Amazon S3 Public Access Block configuration for the S3 bucket.
9871 9872 9873 9874 9875 9876 9877 9878 9879 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 9871 class AwsS3BucketDetails < Struct.new( :owner_id, :owner_name, :created_at, :server_side_encryption_configuration, :public_access_block_configuration) SENSITIVE = [] include Aws::Structure end |
#server_side_encryption_configuration ⇒ Types::AwsS3BucketServerSideEncryptionConfiguration
The encryption rules that are applied to the S3 bucket.
9871 9872 9873 9874 9875 9876 9877 9878 9879 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 9871 class AwsS3BucketDetails < Struct.new( :owner_id, :owner_name, :created_at, :server_side_encryption_configuration, :public_access_block_configuration) SENSITIVE = [] include Aws::Structure end |