You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SecurityHub::Types::AwsS3BucketDetails

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AwsS3BucketDetails as input to an Aws::Client method, you can use a vanilla 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",
        },
      },
    ],
  },
}

The details of an Amazon S3 bucket.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#created_atString

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.

Returns:

  • (String)

    Indicates when the S3 bucket was created.

#owner_idString

The canonical user ID of the owner of the S3 bucket.

Returns:

  • (String)

    The canonical user ID of the owner of the S3 bucket.

#owner_nameString

The display name of the owner of the S3 bucket.

Returns:

  • (String)

    The display name of the owner of the S3 bucket.

#server_side_encryption_configurationTypes::AwsS3BucketServerSideEncryptionConfiguration

The encryption rules that are applied to the S3 bucket.

Returns: