CfnStorageLens
- class aws_cdk.aws_s3.CfnStorageLens(scope, id, *, storage_lens_configuration, tags=None)
Bases:
CfnResource
The AWS::S3::StorageLens resource creates an Amazon S3 Storage Lens configuration.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-storagelens.html
- CloudformationResource:
AWS::S3::StorageLens
- 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 # sses3: Any cfn_storage_lens = s3.CfnStorageLens(self, "MyCfnStorageLens", storage_lens_configuration=s3.CfnStorageLens.StorageLensConfigurationProperty( account_level=s3.CfnStorageLens.AccountLevelProperty( bucket_level=s3.CfnStorageLens.BucketLevelProperty( activity_metrics=s3.CfnStorageLens.ActivityMetricsProperty( is_enabled=False ), advanced_cost_optimization_metrics=s3.CfnStorageLens.AdvancedCostOptimizationMetricsProperty( is_enabled=False ), advanced_data_protection_metrics=s3.CfnStorageLens.AdvancedDataProtectionMetricsProperty( is_enabled=False ), detailed_status_codes_metrics=s3.CfnStorageLens.DetailedStatusCodesMetricsProperty( is_enabled=False ), prefix_level=s3.CfnStorageLens.PrefixLevelProperty( storage_metrics=s3.CfnStorageLens.PrefixLevelStorageMetricsProperty( is_enabled=False, selection_criteria=s3.CfnStorageLens.SelectionCriteriaProperty( delimiter="delimiter", max_depth=123, min_storage_bytes_percentage=123 ) ) ) ), # the properties below are optional activity_metrics=s3.CfnStorageLens.ActivityMetricsProperty( is_enabled=False ), advanced_cost_optimization_metrics=s3.CfnStorageLens.AdvancedCostOptimizationMetricsProperty( is_enabled=False ), advanced_data_protection_metrics=s3.CfnStorageLens.AdvancedDataProtectionMetricsProperty( is_enabled=False ), detailed_status_codes_metrics=s3.CfnStorageLens.DetailedStatusCodesMetricsProperty( is_enabled=False ), storage_lens_group_level=s3.CfnStorageLens.StorageLensGroupLevelProperty( storage_lens_group_selection_criteria=s3.CfnStorageLens.StorageLensGroupSelectionCriteriaProperty( exclude=["exclude"], include=["include"] ) ) ), id="id", is_enabled=False, # the properties below are optional aws_org=s3.CfnStorageLens.AwsOrgProperty( arn="arn" ), data_export=s3.CfnStorageLens.DataExportProperty( cloud_watch_metrics=s3.CfnStorageLens.CloudWatchMetricsProperty( is_enabled=False ), s3_bucket_destination=s3.CfnStorageLens.S3BucketDestinationProperty( account_id="accountId", arn="arn", format="format", output_schema_version="outputSchemaVersion", # the properties below are optional encryption=s3.CfnStorageLens.EncryptionProperty( ssekms=s3.CfnStorageLens.SSEKMSProperty( key_id="keyId" ), sses3=sses3 ), prefix="prefix" ) ), exclude=s3.CfnStorageLens.BucketsAndRegionsProperty( buckets=["buckets"], regions=["regions"] ), include=s3.CfnStorageLens.BucketsAndRegionsProperty( buckets=["buckets"], regions=["regions"] ), storage_lens_arn="storageLensArn" ), # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
- Parameters:
scope (
Construct
) – Scope in which this resource is defined.id (
str
) – Construct identifier for this resource (unique in its scope).storage_lens_configuration (
Union
[IResolvable
,StorageLensConfigurationProperty
,Dict
[str
,Any
]]) – This resource contains the details Amazon S3 Storage Lens configuration.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – A set of tags (key–value pairs) to associate with the Storage Lens configuration.
Methods
- add_deletion_override(path)
Syntactic sugar for
addOverride(path, undefined)
.- Parameters:
path (
str
) – The path of the value to delete.- Return type:
None
- add_dependency(target)
Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
This can be used for resources across stacks (or nested stack) boundaries and the dependency will automatically be transferred to the relevant scope.
- Parameters:
target (
CfnResource
) –- Return type:
None
- add_depends_on(target)
(deprecated) Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
- Parameters:
target (
CfnResource
) –- Deprecated:
use addDependency
- Stability:
deprecated
- Return type:
None
- add_metadata(key, value)
Add a value to the CloudFormation Resource Metadata.
- Parameters:
key (
str
) –value (
Any
) –
- See:
- Return type:
None
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html
Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly.
- add_override(path, value)
Adds an override to the synthesized CloudFormation resource.
To add a property override, either use
addPropertyOverride
or prefixpath
with “Properties.” (i.e.Properties.TopicName
).If the override is nested, separate each nested level using a dot (.) in the path parameter. If there is an array as part of the nesting, specify the index in the path.
To include a literal
.
in the property name, prefix with a\
. In most programming languages you will need to write this as"\\."
because the\
itself will need to be escaped.For example:
cfn_resource.add_override("Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes", ["myattribute"]) cfn_resource.add_override("Properties.GlobalSecondaryIndexes.1.ProjectionType", "INCLUDE")
would add the overrides Example:
"Properties": { "GlobalSecondaryIndexes": [ { "Projection": { "NonKeyAttributes": [ "myattribute" ] ... } ... }, { "ProjectionType": "INCLUDE" ... }, ] ... }
The
value
argument toaddOverride
will not be processed or translated in any way. Pass raw JSON values in here with the correct capitalization for CloudFormation. If you pass CDK classes or structs, they will be rendered with lowercased key names, and CloudFormation will reject the template.- Parameters:
path (
str
) –The path of the property, you can use dot notation to override values in complex types. Any intermediate keys will be created as needed.
value (
Any
) –The value. Could be primitive or complex.
- Return type:
None
- add_property_deletion_override(property_path)
Adds an override that deletes the value of a property from the resource definition.
- Parameters:
property_path (
str
) – The path to the property.- Return type:
None
- add_property_override(property_path, value)
Adds an override to a resource property.
Syntactic sugar for
addOverride("Properties.<...>", value)
.- Parameters:
property_path (
str
) – The path of the property.value (
Any
) – The value.
- Return type:
None
- apply_removal_policy(policy=None, *, apply_to_update_replace_policy=None, default=None)
Sets the deletion policy of the resource based on the removal policy specified.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DESTROY
), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN
). In some cases, a snapshot can be taken of the resource prior to deletion (RemovalPolicy.SNAPSHOT
). A list of resources that support this policy can be found in the following link:- Parameters:
policy (
Optional
[RemovalPolicy
]) –apply_to_update_replace_policy (
Optional
[bool
]) – Apply the same deletion policy to the resource’s “UpdateReplacePolicy”. Default: truedefault (
Optional
[RemovalPolicy
]) – The default policy to apply in case the removal policy is not defined. Default: - Default value is resource specific. To determine the default value for a resource, please consult that specific resource’s documentation.
- See:
- Return type:
None
- get_att(attribute_name, type_hint=None)
Returns a token for an runtime attribute of this resource.
Ideally, use generated attribute accessors (e.g.
resource.arn
), but this can be used for future compatibility in case there is no generated attribute.- Parameters:
attribute_name (
str
) – The name of the attribute.type_hint (
Optional
[ResolutionTypeHint
]) –
- Return type:
- get_metadata(key)
Retrieve a value value from the CloudFormation Resource Metadata.
- Parameters:
key (
str
) –- See:
- Return type:
Any
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html
Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly.
- inspect(inspector)
Examines the CloudFormation resource and discloses attributes.
- Parameters:
inspector (
TreeInspector
) – tree inspector to collect and process attributes.- Return type:
None
- obtain_dependencies()
Retrieves an array of resources this resource depends on.
This assembles dependencies on resources across stacks (including nested stacks) automatically.
- Return type:
List
[Union
[Stack
,CfnResource
]]
- obtain_resource_dependencies()
Get a shallow copy of dependencies between this resource and other resources in the same stack.
- Return type:
List
[CfnResource
]
- override_logical_id(new_logical_id)
Overrides the auto-generated logical ID with a specific ID.
- Parameters:
new_logical_id (
str
) – The new logical ID to use for this stack element.- Return type:
None
- remove_dependency(target)
Indicates that this resource no longer depends on another resource.
This can be used for resources across stacks (including nested stacks) and the dependency will automatically be removed from the relevant scope.
- Parameters:
target (
CfnResource
) –- Return type:
None
- replace_dependency(target, new_target)
Replaces one dependency with another.
- Parameters:
target (
CfnResource
) – The dependency to replace.new_target (
CfnResource
) – The new dependency to add.
- Return type:
None
- to_string()
Returns a string representation of this construct.
- Return type:
str
- Returns:
a string representation of this resource
Attributes
- CFN_RESOURCE_TYPE_NAME = 'AWS::S3::StorageLens'
- attr_storage_lens_configuration_storage_lens_arn
This property contains the details of the ARN of the S3 Storage Lens configuration.
This property is read-only.
- CloudformationAttribute:
StorageLensConfiguration.StorageLensArn
- cfn_options
Options for this resource, such as condition, update policy etc.
- cfn_resource_type
AWS resource type.
- creation_stack
return:
the stack trace of the point where this Resource was created from, sourced from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most node +internal+ entries filtered.
- logical_id
The logical ID for this CloudFormation stack element.
The logical ID of the element is calculated from the path of the resource node in the construct tree.
To override this value, use
overrideLogicalId(newLogicalId)
.- Returns:
the logical ID as a stringified token. This value will only get resolved during synthesis.
- node
The tree node.
- ref
Return a string that will be resolved to a CloudFormation
{ Ref }
for this element.If, by any chance, the intrinsic reference of a resource is not a string, you could coerce it to an IResolvable through
Lazy.any({ produce: resource.ref })
.
- stack
The stack in which this element is defined.
CfnElements must be defined within a stack scope (directly or indirectly).
- storage_lens_configuration
This resource contains the details Amazon S3 Storage Lens configuration.
- tags
Tag Manager which manages the tags for this resource.
- tags_raw
A set of tags (key–value pairs) to associate with the Storage Lens configuration.
Static Methods
- classmethod is_cfn_element(x)
Returns
true
if a construct is a stack element (i.e. part of the synthesized cloudformation template).Uses duck-typing instead of
instanceof
to allow stack elements from different versions of this library to be included in the same stack.- Parameters:
x (
Any
) –- Return type:
bool
- Returns:
The construct as a stack element or undefined if it is not a stack element.
- classmethod is_cfn_resource(x)
Check whether the given object is a CfnResource.
- Parameters:
x (
Any
) –- Return type:
bool
- classmethod is_construct(x)
Checks if
x
is a construct.Use this method instead of
instanceof
to properly detectConstruct
instances, even when the construct library is symlinked.Explanation: in JavaScript, multiple copies of the
constructs
library on disk are seen as independent, completely different libraries. As a consequence, the classConstruct
in each copy of theconstructs
library is seen as a different class, and an instance of one class will not test asinstanceof
the other class.npm install
will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of theconstructs
library can be accidentally installed, andinstanceof
will behave unpredictably. It is safest to avoid usinginstanceof
, and using this type-testing method instead.- Parameters:
x (
Any
) – Any object.- Return type:
bool
- Returns:
true if
x
is an object created from a class which extendsConstruct
.
AccountLevelProperty
- class CfnStorageLens.AccountLevelProperty(*, bucket_level, activity_metrics=None, advanced_cost_optimization_metrics=None, advanced_data_protection_metrics=None, detailed_status_codes_metrics=None, storage_lens_group_level=None)
Bases:
object
This resource contains the details of the account-level metrics for Amazon S3 Storage Lens.
- Parameters:
bucket_level (
Union
[IResolvable
,BucketLevelProperty
,Dict
[str
,Any
]]) – This property contains the details of the account-level bucket-level configurations for Amazon S3 Storage Lens.activity_metrics (
Union
[IResolvable
,ActivityMetricsProperty
,Dict
[str
,Any
],None
]) – This property contains the details of account-level activity metrics for S3 Storage Lens.advanced_cost_optimization_metrics (
Union
[IResolvable
,AdvancedCostOptimizationMetricsProperty
,Dict
[str
,Any
],None
]) – This property contains the details of account-level advanced cost optimization metrics for S3 Storage Lens.advanced_data_protection_metrics (
Union
[IResolvable
,AdvancedDataProtectionMetricsProperty
,Dict
[str
,Any
],None
]) – This property contains the details of account-level advanced data protection metrics for S3 Storage Lens.detailed_status_codes_metrics (
Union
[IResolvable
,DetailedStatusCodesMetricsProperty
,Dict
[str
,Any
],None
]) – This property contains the details of account-level detailed status code metrics for S3 Storage Lens.storage_lens_group_level (
Union
[IResolvable
,StorageLensGroupLevelProperty
,Dict
[str
,Any
],None
]) – This property determines the scope of Storage Lens group data that is displayed in the Storage Lens dashboard.
- See:
- 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 account_level_property = s3.CfnStorageLens.AccountLevelProperty( bucket_level=s3.CfnStorageLens.BucketLevelProperty( activity_metrics=s3.CfnStorageLens.ActivityMetricsProperty( is_enabled=False ), advanced_cost_optimization_metrics=s3.CfnStorageLens.AdvancedCostOptimizationMetricsProperty( is_enabled=False ), advanced_data_protection_metrics=s3.CfnStorageLens.AdvancedDataProtectionMetricsProperty( is_enabled=False ), detailed_status_codes_metrics=s3.CfnStorageLens.DetailedStatusCodesMetricsProperty( is_enabled=False ), prefix_level=s3.CfnStorageLens.PrefixLevelProperty( storage_metrics=s3.CfnStorageLens.PrefixLevelStorageMetricsProperty( is_enabled=False, selection_criteria=s3.CfnStorageLens.SelectionCriteriaProperty( delimiter="delimiter", max_depth=123, min_storage_bytes_percentage=123 ) ) ) ), # the properties below are optional activity_metrics=s3.CfnStorageLens.ActivityMetricsProperty( is_enabled=False ), advanced_cost_optimization_metrics=s3.CfnStorageLens.AdvancedCostOptimizationMetricsProperty( is_enabled=False ), advanced_data_protection_metrics=s3.CfnStorageLens.AdvancedDataProtectionMetricsProperty( is_enabled=False ), detailed_status_codes_metrics=s3.CfnStorageLens.DetailedStatusCodesMetricsProperty( is_enabled=False ), storage_lens_group_level=s3.CfnStorageLens.StorageLensGroupLevelProperty( storage_lens_group_selection_criteria=s3.CfnStorageLens.StorageLensGroupSelectionCriteriaProperty( exclude=["exclude"], include=["include"] ) ) )
Attributes
- activity_metrics
This property contains the details of account-level activity metrics for S3 Storage Lens.
- advanced_cost_optimization_metrics
This property contains the details of account-level advanced cost optimization metrics for S3 Storage Lens.
- advanced_data_protection_metrics
This property contains the details of account-level advanced data protection metrics for S3 Storage Lens.
- bucket_level
This property contains the details of the account-level bucket-level configurations for Amazon S3 Storage Lens.
- detailed_status_codes_metrics
This property contains the details of account-level detailed status code metrics for S3 Storage Lens.
- storage_lens_group_level
This property determines the scope of Storage Lens group data that is displayed in the Storage Lens dashboard.
ActivityMetricsProperty
- class CfnStorageLens.ActivityMetricsProperty(*, is_enabled=None)
Bases:
object
This resource enables Amazon S3 Storage Lens activity metrics.
Activity metrics show details about how your storage is requested, such as requests (for example, All requests, Get requests, Put requests), bytes uploaded or downloaded, and errors.
For more information, see Assessing your storage activity and usage with S3 Storage Lens in the Amazon S3 User Guide . For a complete list of metrics, see S3 Storage Lens metrics glossary in the Amazon S3 User Guide .
- Parameters:
is_enabled (
Union
[bool
,IResolvable
,None
]) – A property that indicates whether the activity metrics is enabled.- See:
- 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 activity_metrics_property = s3.CfnStorageLens.ActivityMetricsProperty( is_enabled=False )
Attributes
- is_enabled
A property that indicates whether the activity metrics is enabled.
AdvancedCostOptimizationMetricsProperty
- class CfnStorageLens.AdvancedCostOptimizationMetricsProperty(*, is_enabled=None)
Bases:
object
This resource enables Amazon S3 Storage Lens advanced cost optimization metrics.
Advanced cost optimization metrics provide insights that you can use to manage and optimize your storage costs, for example, lifecycle rule counts for transitions, expirations, and incomplete multipart uploads.
For more information, see Assessing your storage activity and usage with S3 Storage Lens in the Amazon S3 User Guide . For a complete list of metrics, see S3 Storage Lens metrics glossary in the Amazon S3 User Guide .
- Parameters:
is_enabled (
Union
[bool
,IResolvable
,None
]) – Indicates whether advanced cost optimization metrics are enabled.- See:
- 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 advanced_cost_optimization_metrics_property = s3.CfnStorageLens.AdvancedCostOptimizationMetricsProperty( is_enabled=False )
Attributes
- is_enabled
Indicates whether advanced cost optimization metrics are enabled.
AdvancedDataProtectionMetricsProperty
- class CfnStorageLens.AdvancedDataProtectionMetricsProperty(*, is_enabled=None)
Bases:
object
This resource enables Amazon S3 Storage Lens advanced data protection metrics.
Advanced data protection metrics provide insights that you can use to perform audits and protect your data, for example replication rule counts within and across Regions.
For more information, see Assessing your storage activity and usage with S3 Storage Lens in the Amazon S3 User Guide . For a complete list of metrics, see S3 Storage Lens metrics glossary in the Amazon S3 User Guide .
- Parameters:
is_enabled (
Union
[bool
,IResolvable
,None
]) – Indicates whether advanced data protection metrics are enabled.- See:
- 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 advanced_data_protection_metrics_property = s3.CfnStorageLens.AdvancedDataProtectionMetricsProperty( is_enabled=False )
Attributes
- is_enabled
Indicates whether advanced data protection metrics are enabled.
AwsOrgProperty
- class CfnStorageLens.AwsOrgProperty(*, arn)
Bases:
object
This resource contains the details of the AWS Organization for Amazon S3 Storage Lens.
- Parameters:
arn (
str
) – This resource contains the ARN of the AWS Organization.- See:
- 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 aws_org_property = s3.CfnStorageLens.AwsOrgProperty( arn="arn" )
Attributes
- arn
This resource contains the ARN of the AWS Organization.
BucketLevelProperty
- class CfnStorageLens.BucketLevelProperty(*, activity_metrics=None, advanced_cost_optimization_metrics=None, advanced_data_protection_metrics=None, detailed_status_codes_metrics=None, prefix_level=None)
Bases:
object
A property for the bucket-level storage metrics for Amazon S3 Storage Lens.
- Parameters:
activity_metrics (
Union
[IResolvable
,ActivityMetricsProperty
,Dict
[str
,Any
],None
]) – A property for bucket-level activity metrics for S3 Storage Lens.advanced_cost_optimization_metrics (
Union
[IResolvable
,AdvancedCostOptimizationMetricsProperty
,Dict
[str
,Any
],None
]) – A property for bucket-level advanced cost optimization metrics for S3 Storage Lens.advanced_data_protection_metrics (
Union
[IResolvable
,AdvancedDataProtectionMetricsProperty
,Dict
[str
,Any
],None
]) – A property for bucket-level advanced data protection metrics for S3 Storage Lens.detailed_status_codes_metrics (
Union
[IResolvable
,DetailedStatusCodesMetricsProperty
,Dict
[str
,Any
],None
]) – A property for bucket-level detailed status code metrics for S3 Storage Lens.prefix_level (
Union
[IResolvable
,PrefixLevelProperty
,Dict
[str
,Any
],None
]) – A property for bucket-level prefix-level storage metrics for S3 Storage Lens.
- See:
- 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 bucket_level_property = s3.CfnStorageLens.BucketLevelProperty( activity_metrics=s3.CfnStorageLens.ActivityMetricsProperty( is_enabled=False ), advanced_cost_optimization_metrics=s3.CfnStorageLens.AdvancedCostOptimizationMetricsProperty( is_enabled=False ), advanced_data_protection_metrics=s3.CfnStorageLens.AdvancedDataProtectionMetricsProperty( is_enabled=False ), detailed_status_codes_metrics=s3.CfnStorageLens.DetailedStatusCodesMetricsProperty( is_enabled=False ), prefix_level=s3.CfnStorageLens.PrefixLevelProperty( storage_metrics=s3.CfnStorageLens.PrefixLevelStorageMetricsProperty( is_enabled=False, selection_criteria=s3.CfnStorageLens.SelectionCriteriaProperty( delimiter="delimiter", max_depth=123, min_storage_bytes_percentage=123 ) ) ) )
Attributes
- activity_metrics
A property for bucket-level activity metrics for S3 Storage Lens.
- advanced_cost_optimization_metrics
A property for bucket-level advanced cost optimization metrics for S3 Storage Lens.
- advanced_data_protection_metrics
A property for bucket-level advanced data protection metrics for S3 Storage Lens.
- detailed_status_codes_metrics
A property for bucket-level detailed status code metrics for S3 Storage Lens.
- prefix_level
A property for bucket-level prefix-level storage metrics for S3 Storage Lens.
BucketsAndRegionsProperty
- class CfnStorageLens.BucketsAndRegionsProperty(*, buckets=None, regions=None)
Bases:
object
This resource contains the details of the buckets and Regions for the Amazon S3 Storage Lens configuration.
- Parameters:
buckets (
Optional
[Sequence
[str
]]) – This property contains the details of the buckets for the Amazon S3 Storage Lens configuration. This should be the bucket Amazon Resource Name(ARN). For valid values, see Buckets ARN format here in the Amazon S3 API Reference .regions (
Optional
[Sequence
[str
]]) – This property contains the details of the Regions for the S3 Storage Lens configuration.
- See:
- 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 buckets_and_regions_property = s3.CfnStorageLens.BucketsAndRegionsProperty( buckets=["buckets"], regions=["regions"] )
Attributes
- buckets
This property contains the details of the buckets for the Amazon S3 Storage Lens configuration.
This should be the bucket Amazon Resource Name(ARN). For valid values, see Buckets ARN format here in the Amazon S3 API Reference .
- regions
This property contains the details of the Regions for the S3 Storage Lens configuration.
CloudWatchMetricsProperty
- class CfnStorageLens.CloudWatchMetricsProperty(*, is_enabled)
Bases:
object
This resource enables the Amazon CloudWatch publishing option for Amazon S3 Storage Lens metrics.
For more information, see Monitor S3 Storage Lens metrics in CloudWatch in the Amazon S3 User Guide .
- Parameters:
is_enabled (
Union
[bool
,IResolvable
]) – This property identifies whether the CloudWatch publishing option for S3 Storage Lens is enabled.- See:
- 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 cloud_watch_metrics_property = s3.CfnStorageLens.CloudWatchMetricsProperty( is_enabled=False )
Attributes
- is_enabled
This property identifies whether the CloudWatch publishing option for S3 Storage Lens is enabled.
DataExportProperty
- class CfnStorageLens.DataExportProperty(*, cloud_watch_metrics=None, s3_bucket_destination=None)
Bases:
object
This resource contains the details of the Amazon S3 Storage Lens metrics export.
- Parameters:
cloud_watch_metrics (
Union
[IResolvable
,CloudWatchMetricsProperty
,Dict
[str
,Any
],None
]) – This property enables the Amazon CloudWatch publishing option for S3 Storage Lens metrics.s3_bucket_destination (
Union
[IResolvable
,S3BucketDestinationProperty
,Dict
[str
,Any
],None
]) – This property contains the details of the bucket where the S3 Storage Lens metrics export will be placed.
- See:
- 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 # sses3: Any data_export_property = s3.CfnStorageLens.DataExportProperty( cloud_watch_metrics=s3.CfnStorageLens.CloudWatchMetricsProperty( is_enabled=False ), s3_bucket_destination=s3.CfnStorageLens.S3BucketDestinationProperty( account_id="accountId", arn="arn", format="format", output_schema_version="outputSchemaVersion", # the properties below are optional encryption=s3.CfnStorageLens.EncryptionProperty( ssekms=s3.CfnStorageLens.SSEKMSProperty( key_id="keyId" ), sses3=sses3 ), prefix="prefix" ) )
Attributes
- cloud_watch_metrics
This property enables the Amazon CloudWatch publishing option for S3 Storage Lens metrics.
- s3_bucket_destination
This property contains the details of the bucket where the S3 Storage Lens metrics export will be placed.
DetailedStatusCodesMetricsProperty
- class CfnStorageLens.DetailedStatusCodesMetricsProperty(*, is_enabled=None)
Bases:
object
This resource enables Amazon S3 Storage Lens detailed status code metrics.
Detailed status code metrics generate metrics for HTTP status codes, such as
200 OK
,403 Forbidden
,503 Service Unavailable
and others.For more information, see Assessing your storage activity and usage with S3 Storage Lens in the Amazon S3 User Guide . For a complete list of metrics, see S3 Storage Lens metrics glossary in the Amazon S3 User Guide .
- Parameters:
is_enabled (
Union
[bool
,IResolvable
,None
]) – Indicates whether detailed status code metrics are enabled.- See:
- 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 detailed_status_codes_metrics_property = s3.CfnStorageLens.DetailedStatusCodesMetricsProperty( is_enabled=False )
Attributes
- is_enabled
Indicates whether detailed status code metrics are enabled.
EncryptionProperty
- class CfnStorageLens.EncryptionProperty(*, ssekms=None, sses3=None)
Bases:
object
This resource contains the type of server-side encryption used to encrypt an Amazon S3 Storage Lens metrics export.
For valid values, see the StorageLensDataExportEncryption in the Amazon S3 API Reference .
- Parameters:
ssekms (
Union
[IResolvable
,SSEKMSProperty
,Dict
[str
,Any
],None
]) – Specifies the use of AWS Key Management Service keys (SSE-KMS) to encrypt the S3 Storage Lens metrics export file.sses3 (
Any
) – Specifies the use of an Amazon S3-managed key (SSE-S3) to encrypt the S3 Storage Lens metrics export file.
- See:
- 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 # sses3: Any encryption_property = s3.CfnStorageLens.EncryptionProperty( ssekms=s3.CfnStorageLens.SSEKMSProperty( key_id="keyId" ), sses3=sses3 )
Attributes
- ssekms
Specifies the use of AWS Key Management Service keys (SSE-KMS) to encrypt the S3 Storage Lens metrics export file.
- sses3
Specifies the use of an Amazon S3-managed key (SSE-S3) to encrypt the S3 Storage Lens metrics export file.
PrefixLevelProperty
- class CfnStorageLens.PrefixLevelProperty(*, storage_metrics)
Bases:
object
This resource contains the details of the prefix-level of the Amazon S3 Storage Lens.
- Parameters:
storage_metrics (
Union
[IResolvable
,PrefixLevelStorageMetricsProperty
,Dict
[str
,Any
]]) – A property for the prefix-level storage metrics for Amazon S3 Storage Lens.- See:
- 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 prefix_level_property = s3.CfnStorageLens.PrefixLevelProperty( storage_metrics=s3.CfnStorageLens.PrefixLevelStorageMetricsProperty( is_enabled=False, selection_criteria=s3.CfnStorageLens.SelectionCriteriaProperty( delimiter="delimiter", max_depth=123, min_storage_bytes_percentage=123 ) ) )
Attributes
- storage_metrics
A property for the prefix-level storage metrics for Amazon S3 Storage Lens.
PrefixLevelStorageMetricsProperty
- class CfnStorageLens.PrefixLevelStorageMetricsProperty(*, is_enabled=None, selection_criteria=None)
Bases:
object
This resource contains the details of the prefix-level storage metrics for Amazon S3 Storage Lens.
- Parameters:
is_enabled (
Union
[bool
,IResolvable
,None
]) – This property identifies whether the details of the prefix-level storage metrics for S3 Storage Lens are enabled.selection_criteria (
Union
[IResolvable
,SelectionCriteriaProperty
,Dict
[str
,Any
],None
]) – This property identifies whether the details of the prefix-level storage metrics for S3 Storage Lens are enabled.
- See:
- 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 prefix_level_storage_metrics_property = s3.CfnStorageLens.PrefixLevelStorageMetricsProperty( is_enabled=False, selection_criteria=s3.CfnStorageLens.SelectionCriteriaProperty( delimiter="delimiter", max_depth=123, min_storage_bytes_percentage=123 ) )
Attributes
- is_enabled
This property identifies whether the details of the prefix-level storage metrics for S3 Storage Lens are enabled.
- selection_criteria
This property identifies whether the details of the prefix-level storage metrics for S3 Storage Lens are enabled.
S3BucketDestinationProperty
- class CfnStorageLens.S3BucketDestinationProperty(*, account_id, arn, format, output_schema_version, encryption=None, prefix=None)
Bases:
object
This resource contains the details of the bucket where the Amazon S3 Storage Lens metrics export will be placed.
- Parameters:
account_id (
str
) – This property contains the details of the AWS account ID of the S3 Storage Lens export bucket destination.arn (
str
) – This property contains the details of the ARN of the bucket destination of the S3 Storage Lens export.format (
str
) – This property contains the details of the format of the S3 Storage Lens export bucket destination.output_schema_version (
str
) – This property contains the details of the output schema version of the S3 Storage Lens export bucket destination.encryption (
Union
[IResolvable
,EncryptionProperty
,Dict
[str
,Any
],None
]) – This property contains the details of the encryption of the bucket destination of the Amazon S3 Storage Lens metrics export.prefix (
Optional
[str
]) – This property contains the details of the prefix of the bucket destination of the S3 Storage Lens export .
- See:
- 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 # sses3: Any s3_bucket_destination_property = s3.CfnStorageLens.S3BucketDestinationProperty( account_id="accountId", arn="arn", format="format", output_schema_version="outputSchemaVersion", # the properties below are optional encryption=s3.CfnStorageLens.EncryptionProperty( ssekms=s3.CfnStorageLens.SSEKMSProperty( key_id="keyId" ), sses3=sses3 ), prefix="prefix" )
Attributes
- account_id
This property contains the details of the AWS account ID of the S3 Storage Lens export bucket destination.
- arn
This property contains the details of the ARN of the bucket destination of the S3 Storage Lens export.
- encryption
This property contains the details of the encryption of the bucket destination of the Amazon S3 Storage Lens metrics export.
- format
This property contains the details of the format of the S3 Storage Lens export bucket destination.
- output_schema_version
This property contains the details of the output schema version of the S3 Storage Lens export bucket destination.
- prefix
This property contains the details of the prefix of the bucket destination of the S3 Storage Lens export .
SSEKMSProperty
- class CfnStorageLens.SSEKMSProperty(*, key_id)
Bases:
object
Specifies the use of server-side encryption using an AWS Key Management Service key (SSE-KMS) to encrypt the delivered S3 Storage Lens metrics export file.
- Parameters:
key_id (
str
) – Specifies the Amazon Resource Name (ARN) of the customer managed AWS KMS key to use for encrypting the S3 Storage Lens metrics export file. Amazon S3 only supports symmetric encryption keys. For more information, see Special-purpose keys in the AWS Key Management Service Developer Guide .- See:
- 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 s_sEKMSProperty = s3.CfnStorageLens.SSEKMSProperty( key_id="keyId" )
Attributes
- key_id
Specifies the Amazon Resource Name (ARN) of the customer managed AWS KMS key to use for encrypting the S3 Storage Lens metrics export file.
Amazon S3 only supports symmetric encryption keys. For more information, see Special-purpose keys in the AWS Key Management Service Developer Guide .
SelectionCriteriaProperty
- class CfnStorageLens.SelectionCriteriaProperty(*, delimiter=None, max_depth=None, min_storage_bytes_percentage=None)
Bases:
object
This resource contains the details of the Amazon S3 Storage Lens selection criteria.
- Parameters:
delimiter (
Optional
[str
]) – This property contains the details of the S3 Storage Lens delimiter being used.max_depth (
Union
[int
,float
,None
]) – This property contains the details of the max depth that S3 Storage Lens will collect metrics up to.min_storage_bytes_percentage (
Union
[int
,float
,None
]) – This property contains the details of the minimum storage bytes percentage threshold that S3 Storage Lens will collect metrics up to.
- See:
- 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 selection_criteria_property = s3.CfnStorageLens.SelectionCriteriaProperty( delimiter="delimiter", max_depth=123, min_storage_bytes_percentage=123 )
Attributes
- delimiter
This property contains the details of the S3 Storage Lens delimiter being used.
- max_depth
This property contains the details of the max depth that S3 Storage Lens will collect metrics up to.
- min_storage_bytes_percentage
This property contains the details of the minimum storage bytes percentage threshold that S3 Storage Lens will collect metrics up to.
StorageLensConfigurationProperty
- class CfnStorageLens.StorageLensConfigurationProperty(*, account_level, id, is_enabled, aws_org=None, data_export=None, exclude=None, include=None, storage_lens_arn=None)
Bases:
object
This is the property of the Amazon S3 Storage Lens configuration.
- Parameters:
account_level (
Union
[IResolvable
,AccountLevelProperty
,Dict
[str
,Any
]]) – This property contains the details of the account-level metrics for Amazon S3 Storage Lens configuration.id (
str
) – This property contains the details of the ID of the S3 Storage Lens configuration.is_enabled (
Union
[bool
,IResolvable
]) – This property contains the details of whether the Amazon S3 Storage Lens configuration is enabled.aws_org (
Union
[IResolvable
,AwsOrgProperty
,Dict
[str
,Any
],None
]) – This property contains the details of the AWS Organization for the S3 Storage Lens configuration.data_export (
Union
[IResolvable
,DataExportProperty
,Dict
[str
,Any
],None
]) – This property contains the details of this S3 Storage Lens configuration’s metrics export.exclude (
Union
[IResolvable
,BucketsAndRegionsProperty
,Dict
[str
,Any
],None
]) – This property contains the details of the bucket and or Regions excluded for Amazon S3 Storage Lens configuration.include (
Union
[IResolvable
,BucketsAndRegionsProperty
,Dict
[str
,Any
],None
]) – This property contains the details of the bucket and or Regions included for Amazon S3 Storage Lens configuration.storage_lens_arn (
Optional
[str
]) – This property contains the details of the ARN of the S3 Storage Lens configuration. This property is read-only.
- See:
- 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 # sses3: Any storage_lens_configuration_property = s3.CfnStorageLens.StorageLensConfigurationProperty( account_level=s3.CfnStorageLens.AccountLevelProperty( bucket_level=s3.CfnStorageLens.BucketLevelProperty( activity_metrics=s3.CfnStorageLens.ActivityMetricsProperty( is_enabled=False ), advanced_cost_optimization_metrics=s3.CfnStorageLens.AdvancedCostOptimizationMetricsProperty( is_enabled=False ), advanced_data_protection_metrics=s3.CfnStorageLens.AdvancedDataProtectionMetricsProperty( is_enabled=False ), detailed_status_codes_metrics=s3.CfnStorageLens.DetailedStatusCodesMetricsProperty( is_enabled=False ), prefix_level=s3.CfnStorageLens.PrefixLevelProperty( storage_metrics=s3.CfnStorageLens.PrefixLevelStorageMetricsProperty( is_enabled=False, selection_criteria=s3.CfnStorageLens.SelectionCriteriaProperty( delimiter="delimiter", max_depth=123, min_storage_bytes_percentage=123 ) ) ) ), # the properties below are optional activity_metrics=s3.CfnStorageLens.ActivityMetricsProperty( is_enabled=False ), advanced_cost_optimization_metrics=s3.CfnStorageLens.AdvancedCostOptimizationMetricsProperty( is_enabled=False ), advanced_data_protection_metrics=s3.CfnStorageLens.AdvancedDataProtectionMetricsProperty( is_enabled=False ), detailed_status_codes_metrics=s3.CfnStorageLens.DetailedStatusCodesMetricsProperty( is_enabled=False ), storage_lens_group_level=s3.CfnStorageLens.StorageLensGroupLevelProperty( storage_lens_group_selection_criteria=s3.CfnStorageLens.StorageLensGroupSelectionCriteriaProperty( exclude=["exclude"], include=["include"] ) ) ), id="id", is_enabled=False, # the properties below are optional aws_org=s3.CfnStorageLens.AwsOrgProperty( arn="arn" ), data_export=s3.CfnStorageLens.DataExportProperty( cloud_watch_metrics=s3.CfnStorageLens.CloudWatchMetricsProperty( is_enabled=False ), s3_bucket_destination=s3.CfnStorageLens.S3BucketDestinationProperty( account_id="accountId", arn="arn", format="format", output_schema_version="outputSchemaVersion", # the properties below are optional encryption=s3.CfnStorageLens.EncryptionProperty( ssekms=s3.CfnStorageLens.SSEKMSProperty( key_id="keyId" ), sses3=sses3 ), prefix="prefix" ) ), exclude=s3.CfnStorageLens.BucketsAndRegionsProperty( buckets=["buckets"], regions=["regions"] ), include=s3.CfnStorageLens.BucketsAndRegionsProperty( buckets=["buckets"], regions=["regions"] ), storage_lens_arn="storageLensArn" )
Attributes
- account_level
This property contains the details of the account-level metrics for Amazon S3 Storage Lens configuration.
- aws_org
This property contains the details of the AWS Organization for the S3 Storage Lens configuration.
- data_export
This property contains the details of this S3 Storage Lens configuration’s metrics export.
- exclude
This property contains the details of the bucket and or Regions excluded for Amazon S3 Storage Lens configuration.
- id
This property contains the details of the ID of the S3 Storage Lens configuration.
- include
This property contains the details of the bucket and or Regions included for Amazon S3 Storage Lens configuration.
- is_enabled
This property contains the details of whether the Amazon S3 Storage Lens configuration is enabled.
- storage_lens_arn
This property contains the details of the ARN of the S3 Storage Lens configuration.
This property is read-only.
StorageLensGroupLevelProperty
- class CfnStorageLens.StorageLensGroupLevelProperty(*, storage_lens_group_selection_criteria=None)
Bases:
object
This resource determines the scope of Storage Lens group data that is displayed in the Storage Lens dashboard.
- Parameters:
storage_lens_group_selection_criteria (
Union
[IResolvable
,StorageLensGroupSelectionCriteriaProperty
,Dict
[str
,Any
],None
]) – This property indicates which Storage Lens group ARNs to include or exclude in the Storage Lens group aggregation. If this value is left null, then all Storage Lens groups are selected.- See:
- 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_level_property = s3.CfnStorageLens.StorageLensGroupLevelProperty( storage_lens_group_selection_criteria=s3.CfnStorageLens.StorageLensGroupSelectionCriteriaProperty( exclude=["exclude"], include=["include"] ) )
Attributes
- storage_lens_group_selection_criteria
This property indicates which Storage Lens group ARNs to include or exclude in the Storage Lens group aggregation.
If this value is left null, then all Storage Lens groups are selected.
StorageLensGroupSelectionCriteriaProperty
- class CfnStorageLens.StorageLensGroupSelectionCriteriaProperty(*, exclude=None, include=None)
Bases:
object
This resource indicates which Storage Lens group ARNs to include or exclude in the Storage Lens group aggregation.
You can only attach Storage Lens groups to your dashboard if they’re included in your Storage Lens group aggregation. If this value is left null, then all Storage Lens groups are selected.
- Parameters:
exclude (
Optional
[Sequence
[str
]]) – This property indicates which Storage Lens group ARNs to exclude from the Storage Lens group aggregation.include (
Optional
[Sequence
[str
]]) – This property indicates which Storage Lens group ARNs to include in the Storage Lens group aggregation.
- See:
- 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_selection_criteria_property = s3.CfnStorageLens.StorageLensGroupSelectionCriteriaProperty( exclude=["exclude"], include=["include"] )
Attributes
- exclude
This property indicates which Storage Lens group ARNs to exclude from the Storage Lens group aggregation.
- include
This property indicates which Storage Lens group ARNs to include in the Storage Lens group aggregation.