UpdateProvisionedProductInput
public struct UpdateProvisionedProductInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The language code. en - English (default) jp - Japanese zh - Chinese
Declaration
Swift
public let acceptLanguage: String?
-
The path identifier. This value is optional if the product has a default path, and required if the product has more than one path. You must provide the name or ID, but not both.
Declaration
Swift
public let pathId: String?
-
The name of the path. You must provide the name or ID, but not both.
Declaration
Swift
public let pathName: String?
-
The identifier of the product. You must provide the name or ID, but not both.
Declaration
Swift
public let productId: String?
-
The name of the product. You must provide the name or ID, but not both.
Declaration
Swift
public let productName: String?
-
The identifier of the provisioned product. You must provide the name or ID, but not both.
Declaration
Swift
public let provisionedProductId: String?
-
The name of the provisioned product. You cannot specify both ProvisionedProductName and ProvisionedProductId.
Declaration
Swift
public let provisionedProductName: String?
-
The identifier of the provisioning artifact.
Declaration
Swift
public let provisioningArtifactId: String?
-
The name of the provisioning artifact. You must provide the name or ID, but not both.
Declaration
Swift
public let provisioningArtifactName: String?
-
The new parameters.
Declaration
Swift
public let provisioningParameters: [UpdateProvisioningParameter]?
-
An object that contains information about the provisioning preferences for a stack set.
Declaration
Swift
public let provisioningPreferences: UpdateProvisioningPreferences?
-
One or more tags. Requires the product to have RESOURCE_UPDATE constraint with TagUpdatesOnProvisionedProduct set to ALLOWED to allow tag updates.
Declaration
Swift
public let tags: [Tag]?
-
The idempotency token that uniquely identifies the provisioning update request.
Declaration
Swift
public let updateToken: String
-
init(acceptLanguage:pathId:pathName:productId:productName:provisionedProductId:provisionedProductName:provisioningArtifactId:provisioningArtifactName:provisioningParameters:provisioningPreferences:tags:updateToken:)
Undocumented
Declaration
Swift
public init(acceptLanguage: String? = nil, pathId: String? = nil, pathName: String? = nil, productId: String? = nil, productName: String? = nil, provisionedProductId: String? = nil, provisionedProductName: String? = nil, provisioningArtifactId: String? = nil, provisioningArtifactName: String? = nil, provisioningParameters: [UpdateProvisioningParameter]? = nil, provisioningPreferences: UpdateProvisioningPreferences? = nil, tags: [Tag]? = nil, updateToken: String = UpdateProvisionedProductInput.idempotencyToken())
-
Declaration
Swift
public func validate(name: String) throws