-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated SDK generation @ aws-cloudformation-user-guide 19dc52cd3f20…
…07d6d268b65b739ffb5ebf8c1e76 (#1787) *Automated PR* #### Resources - "aws-native:refactorspaces:Environment": required: - `🟢` "name" property is no longer Required - `🟢` "networkFabricType" property is no longer Required #### Types - `🟡` "aws-native:bedrock:FlowPromptModelInferenceConfiguration": properties: "topK" missing - `🟡` "aws-native:bedrock:FlowVersionPromptModelInferenceConfiguration": properties: "topK" missing - `🟡` "aws-native:bedrock:PromptModelInferenceConfiguration": properties: "topK" missing - `🟢` "aws-native:bedrock:PromptVariant": required: "templateConfiguration" property has changed to Required - `🟡` "aws-native:bedrock:PromptVersionPromptModelInferenceConfiguration": properties: "topK" missing - `🟢` "aws-native:bedrock:PromptVersionPromptVariant": required: "templateConfiguration" property has changed to Required #### New resources: - `appconfig.DeploymentStrategy` - `appsync.GraphQlApi` - `dms.DataMigration` - `sagemaker.Endpoint` #### New functions: - `appconfig.getDeploymentStrategy` - `appsync.getGraphQlApi` - `dms.getDataMigration` - `sagemaker.getEndpoint`
- Loading branch information
1 parent
1754c6c
commit 268bf64
Showing
300 changed files
with
22,028 additions
and
3,039 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
e85b52d7ef350840f279cc004f4b97f62cb4c71c | ||
e407891fcd23524f54f73d89fc230fd574cd5560 |
95 changes: 68 additions & 27 deletions
95
aws-cloudformation-schema/aws-appconfig-deploymentstrategy.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,97 @@ | ||
{ | ||
"typeName" : "AWS::AppConfig::DeploymentStrategy", | ||
"description" : "Resource Type definition for AWS::AppConfig::DeploymentStrategy", | ||
"additionalProperties" : false, | ||
"sourceUrl" : "https://github.com/aws-cloudformation/aws-cloudformation-resource-providers-appconfig.git", | ||
"properties" : { | ||
"ReplicateTo" : { | ||
"type" : "string" | ||
}, | ||
"GrowthType" : { | ||
"type" : "string" | ||
"DeploymentDurationInMinutes" : { | ||
"type" : "number", | ||
"description" : "Total amount of time for a deployment to last." | ||
}, | ||
"Description" : { | ||
"type" : "string" | ||
"type" : "string", | ||
"description" : "A description of the deployment strategy." | ||
}, | ||
"DeploymentDurationInMinutes" : { | ||
"type" : "number" | ||
"FinalBakeTimeInMinutes" : { | ||
"type" : "number", | ||
"description" : "Specifies the amount of time AWS AppConfig monitors for Amazon CloudWatch alarms after the configuration has been deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is triggered during this time, AWS AppConfig rolls back the deployment. You must configure permissions for AWS AppConfig to roll back based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AWS AppConfig User Guide." | ||
}, | ||
"GrowthFactor" : { | ||
"type" : "number" | ||
"type" : "number", | ||
"description" : "The percentage of targets to receive a deployed configuration during each interval." | ||
}, | ||
"Id" : { | ||
"type" : "string" | ||
"GrowthType" : { | ||
"type" : "string", | ||
"description" : "The algorithm used to define how percentage grows over time. AWS AppConfig supports the following growth types:\n\nLinear: For this type, AWS AppConfig processes the deployment by dividing the total number of targets by the value specified for Step percentage. For example, a linear deployment that uses a Step percentage of 10 deploys the configuration to 10 percent of the hosts. After those deployments are complete, the system deploys the configuration to the next 10 percent. This continues until 100% of the targets have successfully received the configuration.\n\nExponential: For this type, AWS AppConfig processes the deployment exponentially using the following formula: G*(2^N). In this formula, G is the growth factor specified by the user and N is the number of steps until the configuration is deployed to all targets. For example, if you specify a growth factor of 2, then the system rolls out the configuration as follows:\n\n2*(2^0)\n\n2*(2^1)\n\n2*(2^2)\n\nExpressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.", | ||
"enum" : [ "EXPONENTIAL", "LINEAR" ] | ||
}, | ||
"FinalBakeTimeInMinutes" : { | ||
"type" : "number" | ||
"Name" : { | ||
"type" : "string", | ||
"description" : "A name for the deployment strategy." | ||
}, | ||
"ReplicateTo" : { | ||
"type" : "string", | ||
"description" : "Save the deployment strategy to a Systems Manager (SSM) document.", | ||
"enum" : [ "NONE", "SSM_DOCUMENT" ] | ||
}, | ||
"Tags" : { | ||
"type" : "array", | ||
"uniqueItems" : false, | ||
"description" : "Assigns metadata to an AWS AppConfig resource. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define. You can specify a maximum of 50 tags for a resource.", | ||
"uniqueItems" : true, | ||
"insertionOrder" : false, | ||
"items" : { | ||
"$ref" : "#/definitions/Tags" | ||
"$ref" : "#/definitions/Tag" | ||
} | ||
}, | ||
"Name" : { | ||
"type" : "string" | ||
"Id" : { | ||
"type" : "string", | ||
"description" : "The deployment strategy ID." | ||
} | ||
}, | ||
"definitions" : { | ||
"Tags" : { | ||
"Tag" : { | ||
"description" : "Metadata to assign to the deployment strategy. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.", | ||
"type" : "object", | ||
"additionalProperties" : false, | ||
"properties" : { | ||
"Value" : { | ||
"type" : "string" | ||
}, | ||
"Key" : { | ||
"type" : "string" | ||
"type" : "string", | ||
"description" : "The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -." | ||
}, | ||
"Value" : { | ||
"type" : "string", | ||
"description" : "The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -." | ||
} | ||
} | ||
}, | ||
"additionalProperties" : false | ||
} | ||
}, | ||
"required" : [ "ReplicateTo", "DeploymentDurationInMinutes", "GrowthFactor", "Name" ], | ||
"additionalProperties" : false, | ||
"required" : [ "DeploymentDurationInMinutes", "GrowthFactor", "Name", "ReplicateTo" ], | ||
"readOnlyProperties" : [ "/properties/Id" ], | ||
"createOnlyProperties" : [ "/properties/Name", "/properties/ReplicateTo" ], | ||
"primaryIdentifier" : [ "/properties/Id" ], | ||
"readOnlyProperties" : [ "/properties/Id" ] | ||
"handlers" : { | ||
"create" : { | ||
"permissions" : [ "appconfig:CreateDeploymentStrategy", "appconfig:TagResource" ] | ||
}, | ||
"read" : { | ||
"permissions" : [ "appconfig:GetDeploymentStrategy", "appconfig:ListTagsForResource" ] | ||
}, | ||
"update" : { | ||
"permissions" : [ "appconfig:UpdateDeploymentStrategy", "appconfig:TagResource", "appconfig:UntagResource" ] | ||
}, | ||
"delete" : { | ||
"permissions" : [ "appconfig:DeleteDeploymentStrategy" ] | ||
}, | ||
"list" : { | ||
"permissions" : [ "appconfig:ListDeploymentStrategies" ] | ||
} | ||
}, | ||
"tagging" : { | ||
"taggable" : true, | ||
"tagOnCreate" : true, | ||
"tagUpdatable" : true, | ||
"cloudFormationSystemTags" : true, | ||
"tagProperty" : "/properties/Tags", | ||
"permissions" : [ "appconfig:TagResource", "appconfig:UntagResource", "appconfig:ListTagsForResource" ] | ||
} | ||
} |
Oops, something went wrong.