CreateImagePipelineRequest
public struct CreateImagePipelineRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The idempotency token used to make this request idempotent.
Declaration
Swift
public let clientToken: String
-
The description of the image pipeline.
Declaration
Swift
public let description: String?
-
The Amazon Resource Name (ARN) of the distribution configuration that will be used to configure and distribute images created by this image pipeline.
Declaration
Swift
public let distributionConfigurationArn: String?
-
Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.
Declaration
Swift
public let enhancedImageMetadataEnabled: Bool?
-
The Amazon Resource Name (ARN) of the image recipe that will be used to configure images created by this image pipeline.
Declaration
Swift
public let imageRecipeArn: String
-
The image test configuration of the image pipeline.
Declaration
Swift
public let imageTestsConfiguration: ImageTestsConfiguration?
-
The Amazon Resource Name (ARN) of the infrastructure configuration that will be used to build images created by this image pipeline.
Declaration
Swift
public let infrastructureConfigurationArn: String
-
The name of the image pipeline.
Declaration
Swift
public let name: String
-
The schedule of the image pipeline.
Declaration
Swift
public let schedule: Schedule?
-
The status of the image pipeline.
Declaration
Swift
public let status: PipelineStatus?
-
The tags of the image pipeline.
Declaration
Swift
public let tags: [String : String]?
-
init(clientToken:description:distributionConfigurationArn:enhancedImageMetadataEnabled:imageRecipeArn:imageTestsConfiguration:infrastructureConfigurationArn:name:schedule:status:tags:)
Undocumented
Declaration
Swift
public init(clientToken: String = CreateImagePipelineRequest.idempotencyToken(), description: String? = nil, distributionConfigurationArn: String? = nil, enhancedImageMetadataEnabled: Bool? = nil, imageRecipeArn: String, imageTestsConfiguration: ImageTestsConfiguration? = nil, infrastructureConfigurationArn: String, name: String, schedule: Schedule? = nil, status: PipelineStatus? = nil, tags: [String : String]? = nil)
-
Declaration
Swift
public func validate(name: String) throws