Show / Hide Table of Contents

Class CfnAssociation.InstanceAssociationOutputLocationProperty

InstanceAssociationOutputLocation is a property of the AWS::SSM::Association resource that specifies an Amazon S3 bucket where you want to store the results of this association request.

Inheritance
object
CfnAssociation.InstanceAssociationOutputLocationProperty
Implements
CfnAssociation.IInstanceAssociationOutputLocationProperty
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.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAssociation.InstanceAssociationOutputLocationProperty : CfnAssociation.IInstanceAssociationOutputLocationProperty
Syntax (vb)
Public Class CfnAssociation.InstanceAssociationOutputLocationProperty Implements CfnAssociation.IInstanceAssociationOutputLocationProperty
Remarks

For the minimal permissions required to enable Amazon S3 output for an association, see Creating associations in the Systems Manager User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-instanceassociationoutputlocation.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.SSM;

             var instanceAssociationOutputLocationProperty = new InstanceAssociationOutputLocationProperty {
                 S3Location = new S3OutputLocationProperty {
                     OutputS3BucketName = "outputS3BucketName",
                     OutputS3KeyPrefix = "outputS3KeyPrefix",
                     OutputS3Region = "outputS3Region"
                 }
             };

Synopsis

Constructors

InstanceAssociationOutputLocationProperty()

InstanceAssociationOutputLocation is a property of the AWS::SSM::Association resource that specifies an Amazon S3 bucket where you want to store the results of this association request.

Properties

S3Location

S3OutputLocation is a property of the InstanceAssociationOutputLocation property that specifies an Amazon S3 bucket where you want to store the results of this request.

Constructors

InstanceAssociationOutputLocationProperty()

InstanceAssociationOutputLocation is a property of the AWS::SSM::Association resource that specifies an Amazon S3 bucket where you want to store the results of this association request.

public InstanceAssociationOutputLocationProperty()
Remarks

For the minimal permissions required to enable Amazon S3 output for an association, see Creating associations in the Systems Manager User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-instanceassociationoutputlocation.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.SSM;

             var instanceAssociationOutputLocationProperty = new InstanceAssociationOutputLocationProperty {
                 S3Location = new S3OutputLocationProperty {
                     OutputS3BucketName = "outputS3BucketName",
                     OutputS3KeyPrefix = "outputS3KeyPrefix",
                     OutputS3Region = "outputS3Region"
                 }
             };

Properties

S3Location

S3OutputLocation is a property of the InstanceAssociationOutputLocation property that specifies an Amazon S3 bucket where you want to store the results of this request.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-instanceassociationoutputlocation.html#cfn-ssm-association-instanceassociationoutputlocation-s3location

Type union: either IResolvable or CfnAssociation.IS3OutputLocationProperty

Implements

CfnAssociation.IInstanceAssociationOutputLocationProperty
Back to top Generated by DocFX