AWS v6.72.0 published on Tuesday, Mar 11, 2025 by Pulumi
aws.imagebuilder.getDistributionConfiguration
Explore with Pulumi AI
Provides details about an Image Builder Distribution Configuration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.imagebuilder.getDistributionConfiguration({
    arn: "arn:aws:imagebuilder:us-west-2:aws:distribution-configuration/example",
});
import pulumi
import pulumi_aws as aws
example = aws.imagebuilder.get_distribution_configuration(arn="arn:aws:imagebuilder:us-west-2:aws:distribution-configuration/example")
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/imagebuilder"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := imagebuilder.LookupDistributionConfiguration(ctx, &imagebuilder.LookupDistributionConfigurationArgs{
			Arn: "arn:aws:imagebuilder:us-west-2:aws:distribution-configuration/example",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var example = Aws.ImageBuilder.GetDistributionConfiguration.Invoke(new()
    {
        Arn = "arn:aws:imagebuilder:us-west-2:aws:distribution-configuration/example",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.imagebuilder.ImagebuilderFunctions;
import com.pulumi.aws.imagebuilder.inputs.GetDistributionConfigurationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var example = ImagebuilderFunctions.getDistributionConfiguration(GetDistributionConfigurationArgs.builder()
            .arn("arn:aws:imagebuilder:us-west-2:aws:distribution-configuration/example")
            .build());
    }
}
variables:
  example:
    fn::invoke:
      function: aws:imagebuilder:getDistributionConfiguration
      arguments:
        arn: arn:aws:imagebuilder:us-west-2:aws:distribution-configuration/example
Using getDistributionConfiguration
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDistributionConfiguration(args: GetDistributionConfigurationArgs, opts?: InvokeOptions): Promise<GetDistributionConfigurationResult>
function getDistributionConfigurationOutput(args: GetDistributionConfigurationOutputArgs, opts?: InvokeOptions): Output<GetDistributionConfigurationResult>def get_distribution_configuration(arn: Optional[str] = None,
                                   tags: Optional[Mapping[str, str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetDistributionConfigurationResult
def get_distribution_configuration_output(arn: Optional[pulumi.Input[str]] = None,
                                   tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetDistributionConfigurationResult]func LookupDistributionConfiguration(ctx *Context, args *LookupDistributionConfigurationArgs, opts ...InvokeOption) (*LookupDistributionConfigurationResult, error)
func LookupDistributionConfigurationOutput(ctx *Context, args *LookupDistributionConfigurationOutputArgs, opts ...InvokeOption) LookupDistributionConfigurationResultOutput> Note: This function is named LookupDistributionConfiguration in the Go SDK.
public static class GetDistributionConfiguration 
{
    public static Task<GetDistributionConfigurationResult> InvokeAsync(GetDistributionConfigurationArgs args, InvokeOptions? opts = null)
    public static Output<GetDistributionConfigurationResult> Invoke(GetDistributionConfigurationInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDistributionConfigurationResult> getDistributionConfiguration(GetDistributionConfigurationArgs args, InvokeOptions options)
public static Output<GetDistributionConfigurationResult> getDistributionConfiguration(GetDistributionConfigurationArgs args, InvokeOptions options)
fn::invoke:
  function: aws:imagebuilder/getDistributionConfiguration:getDistributionConfiguration
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Arn string
- ARN of the distribution configuration.
- Dictionary<string, string>
- Key-value map of resource tags for the distribution configuration.
- Arn string
- ARN of the distribution configuration.
- map[string]string
- Key-value map of resource tags for the distribution configuration.
- arn String
- ARN of the distribution configuration.
- Map<String,String>
- Key-value map of resource tags for the distribution configuration.
- arn string
- ARN of the distribution configuration.
- {[key: string]: string}
- Key-value map of resource tags for the distribution configuration.
- arn str
- ARN of the distribution configuration.
- Mapping[str, str]
- Key-value map of resource tags for the distribution configuration.
- arn String
- ARN of the distribution configuration.
- Map<String>
- Key-value map of resource tags for the distribution configuration.
getDistributionConfiguration Result
The following output properties are available:
- Arn string
- DateCreated string
- Date the distribution configuration was created.
- DateUpdated string
- Date the distribution configuration was updated.
- Description string
- Description of the container distribution configuration.
- Distributions
List<GetDistribution Configuration Distribution> 
- Set of distributions.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the distribution configuration.
- Dictionary<string, string>
- Key-value map of resource tags for the distribution configuration.
- Arn string
- DateCreated string
- Date the distribution configuration was created.
- DateUpdated string
- Date the distribution configuration was updated.
- Description string
- Description of the container distribution configuration.
- Distributions
[]GetDistribution Configuration Distribution 
- Set of distributions.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the distribution configuration.
- map[string]string
- Key-value map of resource tags for the distribution configuration.
- arn String
- dateCreated String
- Date the distribution configuration was created.
- dateUpdated String
- Date the distribution configuration was updated.
- description String
- Description of the container distribution configuration.
- distributions
List<GetDistribution Configuration Distribution> 
- Set of distributions.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the distribution configuration.
- Map<String,String>
- Key-value map of resource tags for the distribution configuration.
- arn string
- dateCreated string
- Date the distribution configuration was created.
- dateUpdated string
- Date the distribution configuration was updated.
- description string
- Description of the container distribution configuration.
- distributions
GetDistribution Configuration Distribution[] 
- Set of distributions.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the distribution configuration.
- {[key: string]: string}
- Key-value map of resource tags for the distribution configuration.
- arn str
- date_created str
- Date the distribution configuration was created.
- date_updated str
- Date the distribution configuration was updated.
- description str
- Description of the container distribution configuration.
- distributions
Sequence[GetDistribution Configuration Distribution] 
- Set of distributions.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the distribution configuration.
- Mapping[str, str]
- Key-value map of resource tags for the distribution configuration.
- arn String
- dateCreated String
- Date the distribution configuration was created.
- dateUpdated String
- Date the distribution configuration was updated.
- description String
- Description of the container distribution configuration.
- distributions List<Property Map>
- Set of distributions.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the distribution configuration.
- Map<String>
- Key-value map of resource tags for the distribution configuration.
Supporting Types
GetDistributionConfigurationDistribution   
- AmiDistribution List<GetConfigurations Distribution Configuration Distribution Ami Distribution Configuration> 
- Nested list of AMI distribution configuration.
- ContainerDistribution List<GetConfigurations Distribution Configuration Distribution Container Distribution Configuration> 
- Nested list of container distribution configurations.
- FastLaunch List<GetConfigurations Distribution Configuration Distribution Fast Launch Configuration> 
- Nested list of Windows faster-launching configurations to use for AMI distribution.
- LaunchTemplate List<GetConfigurations Distribution Configuration Distribution Launch Template Configuration> 
- Nested list of launch template configurations.
- LicenseConfiguration List<string>Arns 
- Set of Amazon Resource Names (ARNs) of License Manager License Configurations.
- Region string
- AWS Region of distribution.
- S3ExportConfigurations List<GetDistribution Configuration Distribution S3Export Configuration> 
- Nested list of S3 export configuration.
- AmiDistribution []GetConfigurations Distribution Configuration Distribution Ami Distribution Configuration 
- Nested list of AMI distribution configuration.
- ContainerDistribution []GetConfigurations Distribution Configuration Distribution Container Distribution Configuration 
- Nested list of container distribution configurations.
- FastLaunch []GetConfigurations Distribution Configuration Distribution Fast Launch Configuration 
- Nested list of Windows faster-launching configurations to use for AMI distribution.
- LaunchTemplate []GetConfigurations Distribution Configuration Distribution Launch Template Configuration 
- Nested list of launch template configurations.
- LicenseConfiguration []stringArns 
- Set of Amazon Resource Names (ARNs) of License Manager License Configurations.
- Region string
- AWS Region of distribution.
- S3ExportConfigurations []GetDistribution Configuration Distribution S3Export Configuration 
- Nested list of S3 export configuration.
- amiDistribution List<GetConfigurations Distribution Configuration Distribution Ami Distribution Configuration> 
- Nested list of AMI distribution configuration.
- containerDistribution List<GetConfigurations Distribution Configuration Distribution Container Distribution Configuration> 
- Nested list of container distribution configurations.
- fastLaunch List<GetConfigurations Distribution Configuration Distribution Fast Launch Configuration> 
- Nested list of Windows faster-launching configurations to use for AMI distribution.
- launchTemplate List<GetConfigurations Distribution Configuration Distribution Launch Template Configuration> 
- Nested list of launch template configurations.
- licenseConfiguration List<String>Arns 
- Set of Amazon Resource Names (ARNs) of License Manager License Configurations.
- region String
- AWS Region of distribution.
- s3ExportConfigurations List<GetDistribution Configuration Distribution S3Export Configuration> 
- Nested list of S3 export configuration.
- amiDistribution GetConfigurations Distribution Configuration Distribution Ami Distribution Configuration[] 
- Nested list of AMI distribution configuration.
- containerDistribution GetConfigurations Distribution Configuration Distribution Container Distribution Configuration[] 
- Nested list of container distribution configurations.
- fastLaunch GetConfigurations Distribution Configuration Distribution Fast Launch Configuration[] 
- Nested list of Windows faster-launching configurations to use for AMI distribution.
- launchTemplate GetConfigurations Distribution Configuration Distribution Launch Template Configuration[] 
- Nested list of launch template configurations.
- licenseConfiguration string[]Arns 
- Set of Amazon Resource Names (ARNs) of License Manager License Configurations.
- region string
- AWS Region of distribution.
- s3ExportConfigurations GetDistribution Configuration Distribution S3Export Configuration[] 
- Nested list of S3 export configuration.
- ami_distribution_ Sequence[Getconfigurations Distribution Configuration Distribution Ami Distribution Configuration] 
- Nested list of AMI distribution configuration.
- container_distribution_ Sequence[Getconfigurations Distribution Configuration Distribution Container Distribution Configuration] 
- Nested list of container distribution configurations.
- fast_launch_ Sequence[Getconfigurations Distribution Configuration Distribution Fast Launch Configuration] 
- Nested list of Windows faster-launching configurations to use for AMI distribution.
- launch_template_ Sequence[Getconfigurations Distribution Configuration Distribution Launch Template Configuration] 
- Nested list of launch template configurations.
- license_configuration_ Sequence[str]arns 
- Set of Amazon Resource Names (ARNs) of License Manager License Configurations.
- region str
- AWS Region of distribution.
- s3_export_ Sequence[Getconfigurations Distribution Configuration Distribution S3Export Configuration] 
- Nested list of S3 export configuration.
- amiDistribution List<Property Map>Configurations 
- Nested list of AMI distribution configuration.
- containerDistribution List<Property Map>Configurations 
- Nested list of container distribution configurations.
- fastLaunch List<Property Map>Configurations 
- Nested list of Windows faster-launching configurations to use for AMI distribution.
- launchTemplate List<Property Map>Configurations 
- Nested list of launch template configurations.
- licenseConfiguration List<String>Arns 
- Set of Amazon Resource Names (ARNs) of License Manager License Configurations.
- region String
- AWS Region of distribution.
- s3ExportConfigurations List<Property Map>
- Nested list of S3 export configuration.
GetDistributionConfigurationDistributionAmiDistributionConfiguration      
- Dictionary<string, string>
- Key-value map of tags to apply to distributed AMI.
- Description string
- Description of the container distribution configuration.
- KmsKey stringId 
- ARN of Key Management Service (KMS) Key to encrypt AMI.
- LaunchPermissions List<GetDistribution Configuration Distribution Ami Distribution Configuration Launch Permission> 
- Nested list of EC2 launch permissions.
- Name string
- Name of the distribution configuration.
- TargetAccount List<string>Ids 
- Set of target AWS Account identifiers.
- map[string]string
- Key-value map of tags to apply to distributed AMI.
- Description string
- Description of the container distribution configuration.
- KmsKey stringId 
- ARN of Key Management Service (KMS) Key to encrypt AMI.
- LaunchPermissions []GetDistribution Configuration Distribution Ami Distribution Configuration Launch Permission 
- Nested list of EC2 launch permissions.
- Name string
- Name of the distribution configuration.
- TargetAccount []stringIds 
- Set of target AWS Account identifiers.
- Map<String,String>
- Key-value map of tags to apply to distributed AMI.
- description String
- Description of the container distribution configuration.
- kmsKey StringId 
- ARN of Key Management Service (KMS) Key to encrypt AMI.
- launchPermissions List<GetDistribution Configuration Distribution Ami Distribution Configuration Launch Permission> 
- Nested list of EC2 launch permissions.
- name String
- Name of the distribution configuration.
- targetAccount List<String>Ids 
- Set of target AWS Account identifiers.
- {[key: string]: string}
- Key-value map of tags to apply to distributed AMI.
- description string
- Description of the container distribution configuration.
- kmsKey stringId 
- ARN of Key Management Service (KMS) Key to encrypt AMI.
- launchPermissions GetDistribution Configuration Distribution Ami Distribution Configuration Launch Permission[] 
- Nested list of EC2 launch permissions.
- name string
- Name of the distribution configuration.
- targetAccount string[]Ids 
- Set of target AWS Account identifiers.
- Mapping[str, str]
- Key-value map of tags to apply to distributed AMI.
- description str
- Description of the container distribution configuration.
- kms_key_ strid 
- ARN of Key Management Service (KMS) Key to encrypt AMI.
- launch_permissions Sequence[GetDistribution Configuration Distribution Ami Distribution Configuration Launch Permission] 
- Nested list of EC2 launch permissions.
- name str
- Name of the distribution configuration.
- target_account_ Sequence[str]ids 
- Set of target AWS Account identifiers.
- Map<String>
- Key-value map of tags to apply to distributed AMI.
- description String
- Description of the container distribution configuration.
- kmsKey StringId 
- ARN of Key Management Service (KMS) Key to encrypt AMI.
- launchPermissions List<Property Map>
- Nested list of EC2 launch permissions.
- name String
- Name of the distribution configuration.
- targetAccount List<String>Ids 
- Set of target AWS Account identifiers.
GetDistributionConfigurationDistributionAmiDistributionConfigurationLaunchPermission        
- OrganizationArns List<string>
- Set of AWS Organization ARNs.
- OrganizationalUnit List<string>Arns 
- Set of AWS Organizational Unit ARNs.
- UserGroups List<string>
- Set of EC2 launch permission user groups.
- UserIds List<string>
- Set of AWS Account identifiers.
- OrganizationArns []string
- Set of AWS Organization ARNs.
- OrganizationalUnit []stringArns 
- Set of AWS Organizational Unit ARNs.
- UserGroups []string
- Set of EC2 launch permission user groups.
- UserIds []string
- Set of AWS Account identifiers.
- organizationArns List<String>
- Set of AWS Organization ARNs.
- organizationalUnit List<String>Arns 
- Set of AWS Organizational Unit ARNs.
- userGroups List<String>
- Set of EC2 launch permission user groups.
- userIds List<String>
- Set of AWS Account identifiers.
- organizationArns string[]
- Set of AWS Organization ARNs.
- organizationalUnit string[]Arns 
- Set of AWS Organizational Unit ARNs.
- userGroups string[]
- Set of EC2 launch permission user groups.
- userIds string[]
- Set of AWS Account identifiers.
- organization_arns Sequence[str]
- Set of AWS Organization ARNs.
- organizational_unit_ Sequence[str]arns 
- Set of AWS Organizational Unit ARNs.
- user_groups Sequence[str]
- Set of EC2 launch permission user groups.
- user_ids Sequence[str]
- Set of AWS Account identifiers.
- organizationArns List<String>
- Set of AWS Organization ARNs.
- organizationalUnit List<String>Arns 
- Set of AWS Organizational Unit ARNs.
- userGroups List<String>
- Set of EC2 launch permission user groups.
- userIds List<String>
- Set of AWS Account identifiers.
GetDistributionConfigurationDistributionContainerDistributionConfiguration      
- List<string>
- Set of tags that are attached to the container distribution configuration.
- Description string
- Description of the container distribution configuration.
- TargetRepositories List<GetDistribution Configuration Distribution Container Distribution Configuration Target Repository> 
- Set of destination repositories for the container distribution configuration.
- []string
- Set of tags that are attached to the container distribution configuration.
- Description string
- Description of the container distribution configuration.
- TargetRepositories []GetDistribution Configuration Distribution Container Distribution Configuration Target Repository 
- Set of destination repositories for the container distribution configuration.
- List<String>
- Set of tags that are attached to the container distribution configuration.
- description String
- Description of the container distribution configuration.
- targetRepositories List<GetDistribution Configuration Distribution Container Distribution Configuration Target Repository> 
- Set of destination repositories for the container distribution configuration.
- string[]
- Set of tags that are attached to the container distribution configuration.
- description string
- Description of the container distribution configuration.
- targetRepositories GetDistribution Configuration Distribution Container Distribution Configuration Target Repository[] 
- Set of destination repositories for the container distribution configuration.
- Sequence[str]
- Set of tags that are attached to the container distribution configuration.
- description str
- Description of the container distribution configuration.
- target_repositories Sequence[GetDistribution Configuration Distribution Container Distribution Configuration Target Repository] 
- Set of destination repositories for the container distribution configuration.
- List<String>
- Set of tags that are attached to the container distribution configuration.
- description String
- Description of the container distribution configuration.
- targetRepositories List<Property Map>
- Set of destination repositories for the container distribution configuration.
GetDistributionConfigurationDistributionContainerDistributionConfigurationTargetRepository        
- RepositoryName string
- Name of the container repository where the output container image is stored.
- Service string
- Service in which the image is registered.
- RepositoryName string
- Name of the container repository where the output container image is stored.
- Service string
- Service in which the image is registered.
- repositoryName String
- Name of the container repository where the output container image is stored.
- service String
- Service in which the image is registered.
- repositoryName string
- Name of the container repository where the output container image is stored.
- service string
- Service in which the image is registered.
- repository_name str
- Name of the container repository where the output container image is stored.
- service str
- Service in which the image is registered.
- repositoryName String
- Name of the container repository where the output container image is stored.
- service String
- Service in which the image is registered.
GetDistributionConfigurationDistributionFastLaunchConfiguration      
- AccountId string
- The account ID that this configuration applies to.
- Enabled bool
- A Boolean that represents the current state of faster launching for the Windows AMI.
- LaunchTemplates List<GetDistribution Configuration Distribution Fast Launch Configuration Launch Template> 
- Nested list of launch templates that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.
- MaxParallel intLaunches 
- The maximum number of parallel instances that are launched for creating resources.
- SnapshotConfigurations List<GetDistribution Configuration Distribution Fast Launch Configuration Snapshot Configuration> 
- Nested list of configurations for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.
- AccountId string
- The account ID that this configuration applies to.
- Enabled bool
- A Boolean that represents the current state of faster launching for the Windows AMI.
- LaunchTemplates []GetDistribution Configuration Distribution Fast Launch Configuration Launch Template 
- Nested list of launch templates that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.
- MaxParallel intLaunches 
- The maximum number of parallel instances that are launched for creating resources.
- SnapshotConfigurations []GetDistribution Configuration Distribution Fast Launch Configuration Snapshot Configuration 
- Nested list of configurations for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.
- accountId String
- The account ID that this configuration applies to.
- enabled Boolean
- A Boolean that represents the current state of faster launching for the Windows AMI.
- launchTemplates List<GetDistribution Configuration Distribution Fast Launch Configuration Launch Template> 
- Nested list of launch templates that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.
- maxParallel IntegerLaunches 
- The maximum number of parallel instances that are launched for creating resources.
- snapshotConfigurations List<GetDistribution Configuration Distribution Fast Launch Configuration Snapshot Configuration> 
- Nested list of configurations for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.
- accountId string
- The account ID that this configuration applies to.
- enabled boolean
- A Boolean that represents the current state of faster launching for the Windows AMI.
- launchTemplates GetDistribution Configuration Distribution Fast Launch Configuration Launch Template[] 
- Nested list of launch templates that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.
- maxParallel numberLaunches 
- The maximum number of parallel instances that are launched for creating resources.
- snapshotConfigurations GetDistribution Configuration Distribution Fast Launch Configuration Snapshot Configuration[] 
- Nested list of configurations for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.
- account_id str
- The account ID that this configuration applies to.
- enabled bool
- A Boolean that represents the current state of faster launching for the Windows AMI.
- launch_templates Sequence[GetDistribution Configuration Distribution Fast Launch Configuration Launch Template] 
- Nested list of launch templates that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.
- max_parallel_ intlaunches 
- The maximum number of parallel instances that are launched for creating resources.
- snapshot_configurations Sequence[GetDistribution Configuration Distribution Fast Launch Configuration Snapshot Configuration] 
- Nested list of configurations for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.
- accountId String
- The account ID that this configuration applies to.
- enabled Boolean
- A Boolean that represents the current state of faster launching for the Windows AMI.
- launchTemplates List<Property Map>
- Nested list of launch templates that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.
- maxParallel NumberLaunches 
- The maximum number of parallel instances that are launched for creating resources.
- snapshotConfigurations List<Property Map>
- Nested list of configurations for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.
GetDistributionConfigurationDistributionFastLaunchConfigurationLaunchTemplate        
- LaunchTemplate stringId 
- ID of the Amazon EC2 launch template.
- LaunchTemplate stringName 
- The name of the launch template to use for faster launching for a Windows AMI.
- LaunchTemplate stringVersion 
- The version of the launch template to use for faster launching for a Windows AMI.
- LaunchTemplate stringId 
- ID of the Amazon EC2 launch template.
- LaunchTemplate stringName 
- The name of the launch template to use for faster launching for a Windows AMI.
- LaunchTemplate stringVersion 
- The version of the launch template to use for faster launching for a Windows AMI.
- launchTemplate StringId 
- ID of the Amazon EC2 launch template.
- launchTemplate StringName 
- The name of the launch template to use for faster launching for a Windows AMI.
- launchTemplate StringVersion 
- The version of the launch template to use for faster launching for a Windows AMI.
- launchTemplate stringId 
- ID of the Amazon EC2 launch template.
- launchTemplate stringName 
- The name of the launch template to use for faster launching for a Windows AMI.
- launchTemplate stringVersion 
- The version of the launch template to use for faster launching for a Windows AMI.
- launch_template_ strid 
- ID of the Amazon EC2 launch template.
- launch_template_ strname 
- The name of the launch template to use for faster launching for a Windows AMI.
- launch_template_ strversion 
- The version of the launch template to use for faster launching for a Windows AMI.
- launchTemplate StringId 
- ID of the Amazon EC2 launch template.
- launchTemplate StringName 
- The name of the launch template to use for faster launching for a Windows AMI.
- launchTemplate StringVersion 
- The version of the launch template to use for faster launching for a Windows AMI.
GetDistributionConfigurationDistributionFastLaunchConfigurationSnapshotConfiguration        
- TargetResource intCount 
- The number of pre-provisioned snapshots to keep on hand for a fast-launch enabled Windows AMI.
- TargetResource intCount 
- The number of pre-provisioned snapshots to keep on hand for a fast-launch enabled Windows AMI.
- targetResource IntegerCount 
- The number of pre-provisioned snapshots to keep on hand for a fast-launch enabled Windows AMI.
- targetResource numberCount 
- The number of pre-provisioned snapshots to keep on hand for a fast-launch enabled Windows AMI.
- target_resource_ intcount 
- The number of pre-provisioned snapshots to keep on hand for a fast-launch enabled Windows AMI.
- targetResource NumberCount 
- The number of pre-provisioned snapshots to keep on hand for a fast-launch enabled Windows AMI.
GetDistributionConfigurationDistributionLaunchTemplateConfiguration      
- AccountId string
- The account ID that this configuration applies to.
- Default bool
- Whether the specified Amazon EC2 launch template is set as the default launch template.
- LaunchTemplate stringId 
- ID of the Amazon EC2 launch template.
- AccountId string
- The account ID that this configuration applies to.
- Default bool
- Whether the specified Amazon EC2 launch template is set as the default launch template.
- LaunchTemplate stringId 
- ID of the Amazon EC2 launch template.
- accountId String
- The account ID that this configuration applies to.
- default_ Boolean
- Whether the specified Amazon EC2 launch template is set as the default launch template.
- launchTemplate StringId 
- ID of the Amazon EC2 launch template.
- accountId string
- The account ID that this configuration applies to.
- default boolean
- Whether the specified Amazon EC2 launch template is set as the default launch template.
- launchTemplate stringId 
- ID of the Amazon EC2 launch template.
- account_id str
- The account ID that this configuration applies to.
- default bool
- Whether the specified Amazon EC2 launch template is set as the default launch template.
- launch_template_ strid 
- ID of the Amazon EC2 launch template.
- accountId String
- The account ID that this configuration applies to.
- default Boolean
- Whether the specified Amazon EC2 launch template is set as the default launch template.
- launchTemplate StringId 
- ID of the Amazon EC2 launch template.
GetDistributionConfigurationDistributionS3ExportConfiguration     
- DiskImage stringFormat 
- The disk image format of the exported image (RAW,VHD, orVMDK)
- RoleName string
- The name of the IAM role to use for exporting.
- S3Bucket string
- The name of the S3 bucket to store the exported image in.
- S3Prefix string
- The prefix for the exported image.
- DiskImage stringFormat 
- The disk image format of the exported image (RAW,VHD, orVMDK)
- RoleName string
- The name of the IAM role to use for exporting.
- S3Bucket string
- The name of the S3 bucket to store the exported image in.
- S3Prefix string
- The prefix for the exported image.
- diskImage StringFormat 
- The disk image format of the exported image (RAW,VHD, orVMDK)
- roleName String
- The name of the IAM role to use for exporting.
- s3Bucket String
- The name of the S3 bucket to store the exported image in.
- s3Prefix String
- The prefix for the exported image.
- diskImage stringFormat 
- The disk image format of the exported image (RAW,VHD, orVMDK)
- roleName string
- The name of the IAM role to use for exporting.
- s3Bucket string
- The name of the S3 bucket to store the exported image in.
- s3Prefix string
- The prefix for the exported image.
- disk_image_ strformat 
- The disk image format of the exported image (RAW,VHD, orVMDK)
- role_name str
- The name of the IAM role to use for exporting.
- s3_bucket str
- The name of the S3 bucket to store the exported image in.
- s3_prefix str
- The prefix for the exported image.
- diskImage StringFormat 
- The disk image format of the exported image (RAW,VHD, orVMDK)
- roleName String
- The name of the IAM role to use for exporting.
- s3Bucket String
- The name of the S3 bucket to store the exported image in.
- s3Prefix String
- The prefix for the exported image.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.