Show / Hide Table of Contents

Class CfnLifecyclePolicy.IncludeResourcesProperty

Specifies how the lifecycle policy should apply actions to selected resources.

Inheritance
object
CfnLifecyclePolicy.IncludeResourcesProperty
Implements
CfnLifecyclePolicy.IIncludeResourcesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLifecyclePolicy.IncludeResourcesProperty : CfnLifecyclePolicy.IIncludeResourcesProperty
Syntax (vb)
Public Class CfnLifecyclePolicy.IncludeResourcesProperty Implements CfnLifecyclePolicy.IIncludeResourcesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-lifecyclepolicy-includeresources.html

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.ImageBuilder;

             var includeResourcesProperty = new IncludeResourcesProperty {
                 Amis = false,
                 Containers = false,
                 Snapshots = false
             };

Synopsis

Constructors

IncludeResourcesProperty()

Specifies how the lifecycle policy should apply actions to selected resources.

Properties

Amis

Specifies whether the lifecycle action should apply to distributed AMIs.

Containers

Specifies whether the lifecycle action should apply to distributed containers.

Snapshots

Specifies whether the lifecycle action should apply to snapshots associated with distributed AMIs.

Constructors

IncludeResourcesProperty()

Specifies how the lifecycle policy should apply actions to selected resources.

public IncludeResourcesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-lifecyclepolicy-includeresources.html

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.ImageBuilder;

             var includeResourcesProperty = new IncludeResourcesProperty {
                 Amis = false,
                 Containers = false,
                 Snapshots = false
             };

Properties

Amis

Specifies whether the lifecycle action should apply to distributed AMIs.

public object? Amis { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-lifecyclepolicy-includeresources.html#cfn-imagebuilder-lifecyclepolicy-includeresources-amis

Containers

Specifies whether the lifecycle action should apply to distributed containers.

public object? Containers { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-lifecyclepolicy-includeresources.html#cfn-imagebuilder-lifecyclepolicy-includeresources-containers

Snapshots

Specifies whether the lifecycle action should apply to snapshots associated with distributed AMIs.

public object? Snapshots { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-lifecyclepolicy-includeresources.html#cfn-imagebuilder-lifecyclepolicy-includeresources-snapshots

Implements

CfnLifecyclePolicy.IIncludeResourcesProperty
Back to top Generated by DocFX