interface AmiDistributionConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.ImageBuilder.CfnDistributionConfiguration.AmiDistributionConfigurationProperty | 
|  Java | software.amazon.awscdk.services.imagebuilder.CfnDistributionConfiguration.AmiDistributionConfigurationProperty | 
|  Python | aws_cdk.aws_imagebuilder.CfnDistributionConfiguration.AmiDistributionConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-imagebuilder»CfnDistributionConfiguration»AmiDistributionConfigurationProperty | 
Define and configure the output AMIs of the pipeline.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as imagebuilder from '@aws-cdk/aws-imagebuilder';
const amiDistributionConfigurationProperty: imagebuilder.CfnDistributionConfiguration.AmiDistributionConfigurationProperty = {
  amiTags: {
    amiTagsKey: 'amiTags',
  },
  description: 'description',
  kmsKeyId: 'kmsKeyId',
  launchPermissionConfiguration: {
    organizationalUnitArns: ['organizationalUnitArns'],
    organizationArns: ['organizationArns'],
    userGroups: ['userGroups'],
    userIds: ['userIds'],
  },
  name: 'name',
  targetAccountIds: ['targetAccountIds'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| ami | IResolvable | { [string]: string } | The tags to apply to AMIs distributed to this Region. | 
| description? | string | The description of the AMI distribution configuration. | 
| kms | string | The KMS key identifier used to encrypt the distributed image. | 
| launch | IResolvable | Launch | Launch permissions can be used to configure which AWS account s can use the AMI to launch instances. | 
| name? | string | The name of the output AMI. | 
| target | string[] | The ID of an account to which you want to distribute an image. | 
amiTags?
Type:
IResolvable | { [string]: string }
(optional)
The tags to apply to AMIs distributed to this Region.
description?
Type:
string
(optional)
The description of the AMI distribution configuration.
Minimum and maximum length are in characters.
kmsKeyId?
Type:
string
(optional)
The KMS key identifier used to encrypt the distributed image.
launchPermissionConfiguration?
Type:
IResolvable | Launch
(optional)
Launch permissions can be used to configure which AWS account s can use the AMI to launch instances.
name?
Type:
string
(optional)
The name of the output AMI.
targetAccountIds?
Type:
string[]
(optional)
The ID of an account to which you want to distribute an image.
