CreateProvisionedProductPlanInput
public struct CreateProvisionedProductPlanInput : 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?
-
A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
Declaration
Swift
public let idempotencyToken: String
-
Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
Declaration
Swift
public let notificationArns: [String]?
-
The path identifier of the product. This value is optional if the product has a default path, and required if the product has more than one path. To list the paths for a product, use ListLaunchPaths.
Declaration
Swift
public let pathId: String?
-
The name of the plan.
Declaration
Swift
public let planName: String
-
The plan type.
Declaration
Swift
public let planType: ProvisionedProductPlanType
-
The product identifier.
Declaration
Swift
public let productId: String
-
A user-friendly name for the provisioned product. This value must be unique for the AWS account and cannot be updated after the product is provisioned.
Declaration
Swift
public let provisionedProductName: String
-
The identifier of the provisioning artifact.
Declaration
Swift
public let provisioningArtifactId: String
-
Parameters specified by the administrator that are required for provisioning the product.
Declaration
Swift
public let provisioningParameters: [UpdateProvisioningParameter]?
-
One or more tags. If the plan is for an existing provisioned product, the product must have a RESOURCE_UPDATE constraint with TagUpdatesOnProvisionedProduct set to ALLOWED to allow tag updates.
Declaration
Swift
public let tags: [Tag]?
-
init(acceptLanguage:idempotencyToken:notificationArns:pathId:planName:planType:productId:provisionedProductName:provisioningArtifactId:provisioningParameters:tags:)
Undocumented
Declaration
Swift
public init(acceptLanguage: String? = nil, idempotencyToken: String = CreateProvisionedProductPlanInput.idempotencyToken(), notificationArns: [String]? = nil, pathId: String? = nil, planName: String, planType: ProvisionedProductPlanType, productId: String, provisionedProductName: String, provisioningArtifactId: String, provisioningParameters: [UpdateProvisioningParameter]? = nil, tags: [Tag]? = nil)
-
Declaration
Swift
public func validate(name: String) throws