Class CfnStorageLens.StorageLensGroupSelectionCriteriaProperty
This resource indicates which Storage Lens group ARNs to include or exclude in the Storage Lens group aggregation.
Inheritance
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class StorageLensGroupSelectionCriteriaProperty : Object, CfnStorageLens.IStorageLensGroupSelectionCriteriaProperty
Syntax (vb)
Public Class StorageLensGroupSelectionCriteriaProperty
Inherits Object
Implements CfnStorageLens.IStorageLensGroupSelectionCriteriaProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3;
var storageLensGroupSelectionCriteriaProperty = new StorageLensGroupSelectionCriteriaProperty {
Exclude = new [] { "exclude" },
Include = new [] { "include" }
};
Synopsis
Constructors
StorageLensGroupSelectionCriteriaProperty() |
Properties
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. |
Constructors
StorageLensGroupSelectionCriteriaProperty()
public StorageLensGroupSelectionCriteriaProperty()
Properties
Exclude
This property indicates which Storage Lens group ARNs to exclude from the Storage Lens group aggregation.
public string[] Exclude { get; set; }
Property Value
System.String[]
Remarks
Include
This property indicates which Storage Lens group ARNs to include in the Storage Lens group aggregation.
public string[] Include { get; set; }
Property Value
System.String[]