Show / Hide Table of Contents

Class CfnDistributionConfiguration.LaunchPermissionConfigurationProperty

Describes the configuration for a launch permission.

Inheritance
object
CfnDistributionConfiguration.LaunchPermissionConfigurationProperty
Implements
CfnDistributionConfiguration.ILaunchPermissionConfigurationProperty
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 CfnDistributionConfiguration.LaunchPermissionConfigurationProperty : CfnDistributionConfiguration.ILaunchPermissionConfigurationProperty
Syntax (vb)
Public Class CfnDistributionConfiguration.LaunchPermissionConfigurationProperty Implements CfnDistributionConfiguration.ILaunchPermissionConfigurationProperty
Remarks

The launch permission modification request is sent to the Amazon EC2 ModifyImageAttribute API on behalf of the user for each Region they have selected to distribute the AMI. To make an AMI public, set the launch permission authorized accounts to all . See the examples for making an AMI public at Amazon EC2 ModifyImageAttribute .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-launchpermissionconfiguration.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 launchPermissionConfigurationProperty = new LaunchPermissionConfigurationProperty {
                 OrganizationalUnitArns = new [] { "organizationalUnitArns" },
                 OrganizationArns = new [] { "organizationArns" },
                 UserGroups = new [] { "userGroups" },
                 UserIds = new [] { "userIds" }
             };

Synopsis

Constructors

LaunchPermissionConfigurationProperty()

Describes the configuration for a launch permission.

Properties

OrganizationArns

The ARN for an AWS Organization that you want to share your AMI with.

OrganizationalUnitArns

The ARN for an AWS Organizations organizational unit (OU) that you want to share your AMI with.

UserGroups

The name of the group.

UserIds

The AWS account ID.

Constructors

LaunchPermissionConfigurationProperty()

Describes the configuration for a launch permission.

public LaunchPermissionConfigurationProperty()
Remarks

The launch permission modification request is sent to the Amazon EC2 ModifyImageAttribute API on behalf of the user for each Region they have selected to distribute the AMI. To make an AMI public, set the launch permission authorized accounts to all . See the examples for making an AMI public at Amazon EC2 ModifyImageAttribute .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-launchpermissionconfiguration.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 launchPermissionConfigurationProperty = new LaunchPermissionConfigurationProperty {
                 OrganizationalUnitArns = new [] { "organizationalUnitArns" },
                 OrganizationArns = new [] { "organizationArns" },
                 UserGroups = new [] { "userGroups" },
                 UserIds = new [] { "userIds" }
             };

Properties

OrganizationArns

The ARN for an AWS Organization that you want to share your AMI with.

public string[]? OrganizationArns { get; set; }
Property Value

string[]

Remarks

For more information, see What is AWS Organizations ? .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-launchpermissionconfiguration.html#cfn-imagebuilder-distributionconfiguration-launchpermissionconfiguration-organizationarns

OrganizationalUnitArns

The ARN for an AWS Organizations organizational unit (OU) that you want to share your AMI with.

public string[]? OrganizationalUnitArns { get; set; }
Property Value

string[]

Remarks

For more information about key concepts for AWS Organizations , see AWS Organizations terminology and concepts .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-launchpermissionconfiguration.html#cfn-imagebuilder-distributionconfiguration-launchpermissionconfiguration-organizationalunitarns

UserGroups

The name of the group.

public string[]? UserGroups { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-launchpermissionconfiguration.html#cfn-imagebuilder-distributionconfiguration-launchpermissionconfiguration-usergroups

UserIds

The AWS account ID.

public string[]? UserIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-distributionconfiguration-launchpermissionconfiguration.html#cfn-imagebuilder-distributionconfiguration-launchpermissionconfiguration-userids

Implements

CfnDistributionConfiguration.ILaunchPermissionConfigurationProperty
Back to top Generated by DocFX