StorageLensGroupReference

class aws_cdk.aws_s3.StorageLensGroupReference(*, storage_lens_group_arn, storage_lens_group_name)

Bases: object

A reference to a StorageLensGroup resource.

Parameters:
  • storage_lens_group_arn (str) – The ARN of the StorageLensGroup resource.

  • storage_lens_group_name (str) – The Name of the StorageLensGroup resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_s3 as s3

storage_lens_group_reference = s3.StorageLensGroupReference(
    storage_lens_group_arn="storageLensGroupArn",
    storage_lens_group_name="storageLensGroupName"
)

Attributes

storage_lens_group_arn

The ARN of the StorageLensGroup resource.

storage_lens_group_name

The Name of the StorageLensGroup resource.