StorageLensGroupReference
- class aws_cdk.interfaces.aws_s3.StorageLensGroupReference(*, storage_lens_group_arn, storage_lens_group_name)
Bases:
objectA 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.interfaces import aws_s3 as interfaces_s3 storage_lens_group_reference = interfaces_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.