diff --git a/cloudformation/ce/aws-ce-costcategory.go b/cloudformation/ce/aws-ce-costcategory.go index 86f161ee12..d27832138b 100644 --- a/cloudformation/ce/aws-ce-costcategory.go +++ b/cloudformation/ce/aws-ce-costcategory.go @@ -12,6 +12,11 @@ import ( // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html type CostCategory struct { + // DefaultValue AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html#cfn-ce-costcategory-defaultvalue + DefaultValue string `json:"DefaultValue,omitempty"` + // Name AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ce-costcategory.html#cfn-ce-costcategory-name diff --git a/cloudformation/dms/aws-dms-endpoint.go b/cloudformation/dms/aws-dms-endpoint.go index 66b5e77987..10736b3229 100644 --- a/cloudformation/dms/aws-dms-endpoint.go +++ b/cloudformation/dms/aws-dms-endpoint.go @@ -123,6 +123,11 @@ type Endpoint struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-redshiftsettings RedshiftSettings *Endpoint_RedshiftSettings `json:"RedshiftSettings,omitempty"` + // ResourceIdentifier AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-resourceidentifier + ResourceIdentifier string `json:"ResourceIdentifier,omitempty"` + // S3Settings AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-s3settings diff --git a/cloudformation/dms/aws-dms-replicationinstance.go b/cloudformation/dms/aws-dms-replicationinstance.go index 7ea4d1ca78..ce822a618a 100644 --- a/cloudformation/dms/aws-dms-replicationinstance.go +++ b/cloudformation/dms/aws-dms-replicationinstance.go @@ -73,6 +73,11 @@ type ReplicationInstance struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier ReplicationSubnetGroupIdentifier string `json:"ReplicationSubnetGroupIdentifier,omitempty"` + // ResourceIdentifier AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-resourceidentifier + ResourceIdentifier string `json:"ResourceIdentifier,omitempty"` + // Tags AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-tags diff --git a/cloudformation/dms/aws-dms-replicationtask.go b/cloudformation/dms/aws-dms-replicationtask.go index d1c0bbe7c2..feda3f8dbb 100644 --- a/cloudformation/dms/aws-dms-replicationtask.go +++ b/cloudformation/dms/aws-dms-replicationtask.go @@ -48,6 +48,11 @@ type ReplicationTask struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings ReplicationTaskSettings string `json:"ReplicationTaskSettings,omitempty"` + // ResourceIdentifier AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-resourceidentifier + ResourceIdentifier string `json:"ResourceIdentifier,omitempty"` + // SourceEndpointArn AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn diff --git a/cloudformation/dynamodb/aws-dynamodb-table.go b/cloudformation/dynamodb/aws-dynamodb-table.go index 71003aa90c..c5493eb631 100644 --- a/cloudformation/dynamodb/aws-dynamodb-table.go +++ b/cloudformation/dynamodb/aws-dynamodb-table.go @@ -38,6 +38,11 @@ type Table struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-keyschema KeySchema []Table_KeySchema `json:"KeySchema,omitempty"` + // KinesisStreamSpecification AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-kinesisstreamspecification + KinesisStreamSpecification *Table_KinesisStreamSpecification `json:"KinesisStreamSpecification,omitempty"` + // LocalSecondaryIndexes AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-lsi diff --git a/cloudformation/elasticache/aws-elasticache-parametergroup.go b/cloudformation/elasticache/aws-elasticache-parametergroup.go index 3033ab53f0..4279705583 100644 --- a/cloudformation/elasticache/aws-elasticache-parametergroup.go +++ b/cloudformation/elasticache/aws-elasticache-parametergroup.go @@ -6,6 +6,7 @@ import ( "fmt" "github.com/awslabs/goformation/v4/cloudformation/policies" + "github.com/awslabs/goformation/v4/cloudformation/tags" ) // ParameterGroup AWS CloudFormation Resource (AWS::ElastiCache::ParameterGroup) @@ -27,6 +28,11 @@ type ParameterGroup struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-properties Properties map[string]string `json:"Properties,omitempty"` + // Tags AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-tags + Tags []tags.Tag `json:"Tags,omitempty"` + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` diff --git a/cloudformation/elasticache/aws-elasticache-securitygroup.go b/cloudformation/elasticache/aws-elasticache-securitygroup.go index e639cbf52d..ecc4a95813 100644 --- a/cloudformation/elasticache/aws-elasticache-securitygroup.go +++ b/cloudformation/elasticache/aws-elasticache-securitygroup.go @@ -6,6 +6,7 @@ import ( "fmt" "github.com/awslabs/goformation/v4/cloudformation/policies" + "github.com/awslabs/goformation/v4/cloudformation/tags" ) // SecurityGroup AWS CloudFormation Resource (AWS::ElastiCache::SecurityGroup) @@ -17,6 +18,11 @@ type SecurityGroup struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description Description string `json:"Description,omitempty"` + // Tags AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-tags + Tags []tags.Tag `json:"Tags,omitempty"` + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` diff --git a/cloudformation/elasticache/aws-elasticache-subnetgroup.go b/cloudformation/elasticache/aws-elasticache-subnetgroup.go index 3a0a6e4089..209d99c2bb 100644 --- a/cloudformation/elasticache/aws-elasticache-subnetgroup.go +++ b/cloudformation/elasticache/aws-elasticache-subnetgroup.go @@ -6,6 +6,7 @@ import ( "fmt" "github.com/awslabs/goformation/v4/cloudformation/policies" + "github.com/awslabs/goformation/v4/cloudformation/tags" ) // SubnetGroup AWS CloudFormation Resource (AWS::ElastiCache::SubnetGroup) @@ -27,6 +28,11 @@ type SubnetGroup struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-subnetids SubnetIds []string `json:"SubnetIds,omitempty"` + // Tags AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-tags + Tags []tags.Tag `json:"Tags,omitempty"` + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` diff --git a/cloudformation/gamelift/aws-gamelift-fleet.go b/cloudformation/gamelift/aws-gamelift-fleet.go index cf46095ca1..16fe6ffbe7 100644 --- a/cloudformation/gamelift/aws-gamelift-fleet.go +++ b/cloudformation/gamelift/aws-gamelift-fleet.go @@ -38,7 +38,7 @@ type Fleet struct { EC2InboundPermissions []Fleet_IpPermission `json:"EC2InboundPermissions,omitempty"` // EC2InstanceType AWS CloudFormation Property - // Required: true + // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype EC2InstanceType string `json:"EC2InstanceType,omitempty"` @@ -52,11 +52,6 @@ type Fleet struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-instancerolearn InstanceRoleARN string `json:"InstanceRoleARN,omitempty"` - // LogPaths AWS CloudFormation Property - // Required: false - // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-logpaths - LogPaths []string `json:"LogPaths,omitempty"` - // MaxSize AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize @@ -73,7 +68,7 @@ type Fleet struct { MinSize int `json:"MinSize,omitempty"` // Name AWS CloudFormation Property - // Required: true + // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name Name string `json:"Name,omitempty"` @@ -107,16 +102,6 @@ type Fleet struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-scriptid ScriptId string `json:"ScriptId,omitempty"` - // ServerLaunchParameters AWS CloudFormation Property - // Required: false - // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters - ServerLaunchParameters string `json:"ServerLaunchParameters,omitempty"` - - // ServerLaunchPath AWS CloudFormation Property - // Required: false - // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath - ServerLaunchPath string `json:"ServerLaunchPath,omitempty"` - // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` diff --git a/cloudformation/gamelift/aws-gamelift-fleet_ippermission.go b/cloudformation/gamelift/aws-gamelift-fleet_ippermission.go index 7650d969ee..3f8fbb6203 100644 --- a/cloudformation/gamelift/aws-gamelift-fleet_ippermission.go +++ b/cloudformation/gamelift/aws-gamelift-fleet_ippermission.go @@ -5,27 +5,27 @@ import ( ) // Fleet_IpPermission AWS CloudFormation Resource (AWS::GameLift::Fleet.IpPermission) -// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ec2inboundpermission.html +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ippermission.html type Fleet_IpPermission struct { // FromPort AWS CloudFormation Property // Required: true - // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ec2inboundpermission.html#cfn-gamelift-fleet-ec2inboundpermissions-fromport + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ippermission.html#cfn-gamelift-fleet-ippermission-fromport FromPort int `json:"FromPort"` // IpRange AWS CloudFormation Property // Required: true - // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ec2inboundpermission.html#cfn-gamelift-fleet-ec2inboundpermissions-iprange + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ippermission.html#cfn-gamelift-fleet-ippermission-iprange IpRange string `json:"IpRange,omitempty"` // Protocol AWS CloudFormation Property // Required: true - // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ec2inboundpermission.html#cfn-gamelift-fleet-ec2inboundpermissions-protocol + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ippermission.html#cfn-gamelift-fleet-ippermission-protocol Protocol string `json:"Protocol,omitempty"` // ToPort AWS CloudFormation Property // Required: true - // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ec2inboundpermission.html#cfn-gamelift-fleet-ec2inboundpermissions-toport + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ippermission.html#cfn-gamelift-fleet-ippermission-toport ToPort int `json:"ToPort"` // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy diff --git a/cloudformation/iot/aws-iot-topicrule.go b/cloudformation/iot/aws-iot-topicrule.go index 43b90ffc13..12e3fbbb9f 100644 --- a/cloudformation/iot/aws-iot-topicrule.go +++ b/cloudformation/iot/aws-iot-topicrule.go @@ -6,6 +6,7 @@ import ( "fmt" "github.com/awslabs/goformation/v4/cloudformation/policies" + "github.com/awslabs/goformation/v4/cloudformation/tags" ) // TopicRule AWS CloudFormation Resource (AWS::IoT::TopicRule) @@ -17,6 +18,11 @@ type TopicRule struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename RuleName string `json:"RuleName,omitempty"` + // Tags AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-tags + Tags []tags.Tag `json:"Tags,omitempty"` + // TopicRulePayload AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-topicrulepayload diff --git a/cloudformation/iot/aws-iot-topicrule_action.go b/cloudformation/iot/aws-iot-topicrule_action.go index 842e26799b..9caf2943fa 100644 --- a/cloudformation/iot/aws-iot-topicrule_action.go +++ b/cloudformation/iot/aws-iot-topicrule_action.go @@ -13,6 +13,11 @@ type TopicRule_Action struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-cloudwatchalarm CloudwatchAlarm *TopicRule_CloudwatchAlarmAction `json:"CloudwatchAlarm,omitempty"` + // CloudwatchLogs AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-cloudwatchlogs + CloudwatchLogs *TopicRule_CloudwatchLogsAction `json:"CloudwatchLogs,omitempty"` + // CloudwatchMetric AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-cloudwatchmetric @@ -58,6 +63,11 @@ type TopicRule_Action struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-iotsitewise IotSiteWise *TopicRule_IotSiteWiseAction `json:"IotSiteWise,omitempty"` + // Kafka AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-kafka + Kafka *TopicRule_KafkaAction `json:"Kafka,omitempty"` + // Kinesis AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-kinesis @@ -93,6 +103,11 @@ type TopicRule_Action struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-stepfunctions StepFunctions *TopicRule_StepFunctionsAction `json:"StepFunctions,omitempty"` + // Timestream AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-timestream + Timestream *TopicRule_TimestreamAction `json:"Timestream,omitempty"` + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` diff --git a/cloudformation/iot/aws-iot-topicrule_cloudwatchlogsaction.go b/cloudformation/iot/aws-iot-topicrule_cloudwatchlogsaction.go new file mode 100644 index 0000000000..7cda291b97 --- /dev/null +++ b/cloudformation/iot/aws-iot-topicrule_cloudwatchlogsaction.go @@ -0,0 +1,40 @@ +package iot + +import ( + "github.com/awslabs/goformation/v4/cloudformation/policies" +) + +// TopicRule_CloudwatchLogsAction AWS CloudFormation Resource (AWS::IoT::TopicRule.CloudwatchLogsAction) +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchlogsaction.html +type TopicRule_CloudwatchLogsAction struct { + + // LogGroupName AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchlogsaction.html#cfn-iot-topicrule-cloudwatchlogsaction-loggroupname + LogGroupName string `json:"LogGroupName,omitempty"` + + // RoleArn AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchlogsaction.html#cfn-iot-topicrule-cloudwatchlogsaction-rolearn + RoleArn string `json:"RoleArn,omitempty"` + + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy + AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` + + // AWSCloudFormationUpdateReplacePolicy represents a CloudFormation UpdateReplacePolicy + AWSCloudFormationUpdateReplacePolicy policies.UpdateReplacePolicy `json:"-"` + + // AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource + AWSCloudFormationDependsOn []string `json:"-"` + + // AWSCloudFormationMetadata stores structured data associated with this resource + AWSCloudFormationMetadata map[string]interface{} `json:"-"` + + // AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created + AWSCloudFormationCondition string `json:"-"` +} + +// AWSCloudFormationType returns the AWS CloudFormation resource type +func (r *TopicRule_CloudwatchLogsAction) AWSCloudFormationType() string { + return "AWS::IoT::TopicRule.CloudwatchLogsAction" +} diff --git a/cloudformation/iot/aws-iot-topicrule_firehoseaction.go b/cloudformation/iot/aws-iot-topicrule_firehoseaction.go index eb6061a57c..b8b6e9e14e 100644 --- a/cloudformation/iot/aws-iot-topicrule_firehoseaction.go +++ b/cloudformation/iot/aws-iot-topicrule_firehoseaction.go @@ -8,6 +8,11 @@ import ( // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html type TopicRule_FirehoseAction struct { + // BatchMode AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-batchmode + BatchMode bool `json:"BatchMode,omitempty"` + // DeliveryStreamName AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname diff --git a/cloudformation/iot/aws-iot-topicrule_iotanalyticsaction.go b/cloudformation/iot/aws-iot-topicrule_iotanalyticsaction.go index e71eb1002b..0c68aab428 100644 --- a/cloudformation/iot/aws-iot-topicrule_iotanalyticsaction.go +++ b/cloudformation/iot/aws-iot-topicrule_iotanalyticsaction.go @@ -8,6 +8,11 @@ import ( // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html type TopicRule_IotAnalyticsAction struct { + // BatchMode AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-batchmode + BatchMode bool `json:"BatchMode,omitempty"` + // ChannelName AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-iotanalyticsaction.html#cfn-iot-topicrule-iotanalyticsaction-channelname diff --git a/cloudformation/iot/aws-iot-topicrule_ioteventsaction.go b/cloudformation/iot/aws-iot-topicrule_ioteventsaction.go index 697b2ed62a..95bec53e08 100644 --- a/cloudformation/iot/aws-iot-topicrule_ioteventsaction.go +++ b/cloudformation/iot/aws-iot-topicrule_ioteventsaction.go @@ -8,6 +8,11 @@ import ( // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html type TopicRule_IotEventsAction struct { + // BatchMode AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-batchmode + BatchMode bool `json:"BatchMode,omitempty"` + // InputName AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-ioteventsaction.html#cfn-iot-topicrule-ioteventsaction-inputname diff --git a/cloudformation/iot/aws-iot-topicrule_kafkaaction.go b/cloudformation/iot/aws-iot-topicrule_kafkaaction.go new file mode 100644 index 0000000000..12f57176d5 --- /dev/null +++ b/cloudformation/iot/aws-iot-topicrule_kafkaaction.go @@ -0,0 +1,55 @@ +package iot + +import ( + "github.com/awslabs/goformation/v4/cloudformation/policies" +) + +// TopicRule_KafkaAction AWS CloudFormation Resource (AWS::IoT::TopicRule.KafkaAction) +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kafkaaction.html +type TopicRule_KafkaAction struct { + + // ClientProperties AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kafkaaction.html#cfn-iot-topicrule-kafkaaction-clientproperties + ClientProperties map[string]string `json:"ClientProperties,omitempty"` + + // DestinationArn AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kafkaaction.html#cfn-iot-topicrule-kafkaaction-destinationarn + DestinationArn string `json:"DestinationArn,omitempty"` + + // Key AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kafkaaction.html#cfn-iot-topicrule-kafkaaction-key + Key string `json:"Key,omitempty"` + + // Partition AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kafkaaction.html#cfn-iot-topicrule-kafkaaction-partition + Partition string `json:"Partition,omitempty"` + + // Topic AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kafkaaction.html#cfn-iot-topicrule-kafkaaction-topic + Topic string `json:"Topic,omitempty"` + + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy + AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` + + // AWSCloudFormationUpdateReplacePolicy represents a CloudFormation UpdateReplacePolicy + AWSCloudFormationUpdateReplacePolicy policies.UpdateReplacePolicy `json:"-"` + + // AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource + AWSCloudFormationDependsOn []string `json:"-"` + + // AWSCloudFormationMetadata stores structured data associated with this resource + AWSCloudFormationMetadata map[string]interface{} `json:"-"` + + // AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created + AWSCloudFormationCondition string `json:"-"` +} + +// AWSCloudFormationType returns the AWS CloudFormation resource type +func (r *TopicRule_KafkaAction) AWSCloudFormationType() string { + return "AWS::IoT::TopicRule.KafkaAction" +} diff --git a/cloudformation/iot/aws-iot-topicrule_timestreamaction.go b/cloudformation/iot/aws-iot-topicrule_timestreamaction.go new file mode 100644 index 0000000000..ec2f998185 --- /dev/null +++ b/cloudformation/iot/aws-iot-topicrule_timestreamaction.go @@ -0,0 +1,55 @@ +package iot + +import ( + "github.com/awslabs/goformation/v4/cloudformation/policies" +) + +// TopicRule_TimestreamAction AWS CloudFormation Resource (AWS::IoT::TopicRule.TimestreamAction) +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamaction.html +type TopicRule_TimestreamAction struct { + + // DatabaseName AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamaction.html#cfn-iot-topicrule-timestreamaction-databasename + DatabaseName string `json:"DatabaseName,omitempty"` + + // Dimensions AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamaction.html#cfn-iot-topicrule-timestreamaction-dimensions + Dimensions *TopicRule_TimestreamDimensionsList `json:"Dimensions,omitempty"` + + // RoleArn AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamaction.html#cfn-iot-topicrule-timestreamaction-rolearn + RoleArn string `json:"RoleArn,omitempty"` + + // TableName AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamaction.html#cfn-iot-topicrule-timestreamaction-tablename + TableName string `json:"TableName,omitempty"` + + // Timestamp AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamaction.html#cfn-iot-topicrule-timestreamaction-timestamp + Timestamp *TopicRule_TimestreamTimestamp `json:"Timestamp,omitempty"` + + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy + AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` + + // AWSCloudFormationUpdateReplacePolicy represents a CloudFormation UpdateReplacePolicy + AWSCloudFormationUpdateReplacePolicy policies.UpdateReplacePolicy `json:"-"` + + // AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource + AWSCloudFormationDependsOn []string `json:"-"` + + // AWSCloudFormationMetadata stores structured data associated with this resource + AWSCloudFormationMetadata map[string]interface{} `json:"-"` + + // AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created + AWSCloudFormationCondition string `json:"-"` +} + +// AWSCloudFormationType returns the AWS CloudFormation resource type +func (r *TopicRule_TimestreamAction) AWSCloudFormationType() string { + return "AWS::IoT::TopicRule.TimestreamAction" +} diff --git a/cloudformation/iot/aws-iot-topicrule_timestreamdimension.go b/cloudformation/iot/aws-iot-topicrule_timestreamdimension.go new file mode 100644 index 0000000000..f755338e3a --- /dev/null +++ b/cloudformation/iot/aws-iot-topicrule_timestreamdimension.go @@ -0,0 +1,40 @@ +package iot + +import ( + "github.com/awslabs/goformation/v4/cloudformation/policies" +) + +// TopicRule_TimestreamDimension AWS CloudFormation Resource (AWS::IoT::TopicRule.TimestreamDimension) +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamdimension.html +type TopicRule_TimestreamDimension struct { + + // Name AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamdimension.html#cfn-iot-topicrule-timestreamdimension-name + Name string `json:"Name,omitempty"` + + // Value AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamdimension.html#cfn-iot-topicrule-timestreamdimension-value + Value string `json:"Value,omitempty"` + + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy + AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` + + // AWSCloudFormationUpdateReplacePolicy represents a CloudFormation UpdateReplacePolicy + AWSCloudFormationUpdateReplacePolicy policies.UpdateReplacePolicy `json:"-"` + + // AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource + AWSCloudFormationDependsOn []string `json:"-"` + + // AWSCloudFormationMetadata stores structured data associated with this resource + AWSCloudFormationMetadata map[string]interface{} `json:"-"` + + // AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created + AWSCloudFormationCondition string `json:"-"` +} + +// AWSCloudFormationType returns the AWS CloudFormation resource type +func (r *TopicRule_TimestreamDimension) AWSCloudFormationType() string { + return "AWS::IoT::TopicRule.TimestreamDimension" +} diff --git a/cloudformation/iot/aws-iot-topicrule_timestreamdimensionslist.go b/cloudformation/iot/aws-iot-topicrule_timestreamdimensionslist.go new file mode 100644 index 0000000000..861b7ace68 --- /dev/null +++ b/cloudformation/iot/aws-iot-topicrule_timestreamdimensionslist.go @@ -0,0 +1,35 @@ +package iot + +import ( + "github.com/awslabs/goformation/v4/cloudformation/policies" +) + +// TopicRule_TimestreamDimensionsList AWS CloudFormation Resource (AWS::IoT::TopicRule.TimestreamDimensionsList) +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamdimensionslist.html +type TopicRule_TimestreamDimensionsList struct { + + // TimestreamDimensionsList AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamdimensionslist.html#cfn-iot-topicrule-timestreamdimensionslist-timestreamdimensionslist + TimestreamDimensionsList []TopicRule_TimestreamDimension `json:"TimestreamDimensionsList,omitempty"` + + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy + AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` + + // AWSCloudFormationUpdateReplacePolicy represents a CloudFormation UpdateReplacePolicy + AWSCloudFormationUpdateReplacePolicy policies.UpdateReplacePolicy `json:"-"` + + // AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource + AWSCloudFormationDependsOn []string `json:"-"` + + // AWSCloudFormationMetadata stores structured data associated with this resource + AWSCloudFormationMetadata map[string]interface{} `json:"-"` + + // AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created + AWSCloudFormationCondition string `json:"-"` +} + +// AWSCloudFormationType returns the AWS CloudFormation resource type +func (r *TopicRule_TimestreamDimensionsList) AWSCloudFormationType() string { + return "AWS::IoT::TopicRule.TimestreamDimensionsList" +} diff --git a/cloudformation/iot/aws-iot-topicrule_timestreamtimestamp.go b/cloudformation/iot/aws-iot-topicrule_timestreamtimestamp.go new file mode 100644 index 0000000000..b1c26e55aa --- /dev/null +++ b/cloudformation/iot/aws-iot-topicrule_timestreamtimestamp.go @@ -0,0 +1,40 @@ +package iot + +import ( + "github.com/awslabs/goformation/v4/cloudformation/policies" +) + +// TopicRule_TimestreamTimestamp AWS CloudFormation Resource (AWS::IoT::TopicRule.TimestreamTimestamp) +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamtimestamp.html +type TopicRule_TimestreamTimestamp struct { + + // Unit AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamtimestamp.html#cfn-iot-topicrule-timestreamtimestamp-unit + Unit string `json:"Unit,omitempty"` + + // Value AWS CloudFormation Property + // Required: true + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-timestreamtimestamp.html#cfn-iot-topicrule-timestreamtimestamp-value + Value string `json:"Value,omitempty"` + + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy + AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` + + // AWSCloudFormationUpdateReplacePolicy represents a CloudFormation UpdateReplacePolicy + AWSCloudFormationUpdateReplacePolicy policies.UpdateReplacePolicy `json:"-"` + + // AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource + AWSCloudFormationDependsOn []string `json:"-"` + + // AWSCloudFormationMetadata stores structured data associated with this resource + AWSCloudFormationMetadata map[string]interface{} `json:"-"` + + // AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created + AWSCloudFormationCondition string `json:"-"` +} + +// AWSCloudFormationType returns the AWS CloudFormation resource type +func (r *TopicRule_TimestreamTimestamp) AWSCloudFormationType() string { + return "AWS::IoT::TopicRule.TimestreamTimestamp" +} diff --git a/cloudformation/iot/aws-iot-topicrule_topicrulepayload.go b/cloudformation/iot/aws-iot-topicrule_topicrulepayload.go index e61ff1d31e..a094774961 100644 --- a/cloudformation/iot/aws-iot-topicrule_topicrulepayload.go +++ b/cloudformation/iot/aws-iot-topicrule_topicrulepayload.go @@ -29,9 +29,9 @@ type TopicRule_TopicRulePayload struct { ErrorAction *TopicRule_Action `json:"ErrorAction,omitempty"` // RuleDisabled AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled - RuleDisabled bool `json:"RuleDisabled,omitempty"` + RuleDisabled bool `json:"RuleDisabled"` // Sql AWS CloudFormation Property // Required: true diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel.go b/cloudformation/iotevents/aws-iotevents-detectormodel.go index 6f68ef40c2..1a136f48a9 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel.go @@ -14,7 +14,7 @@ import ( type DetectorModel struct { // DetectorModelDefinition AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-detectormodeldefinition DetectorModelDefinition *DetectorModel_DetectorModelDefinition `json:"DetectorModelDefinition,omitempty"` @@ -39,7 +39,7 @@ type DetectorModel struct { Key string `json:"Key,omitempty"` // RoleArn AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-detectormodel.html#cfn-iotevents-detectormodel-rolearn RoleArn string `json:"RoleArn,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_assetpropertytimestamp.go b/cloudformation/iotevents/aws-iotevents-detectormodel_assetpropertytimestamp.go index f434641f0f..2efb3eae8d 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_assetpropertytimestamp.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_assetpropertytimestamp.go @@ -14,7 +14,7 @@ type DetectorModel_AssetPropertyTimestamp struct { OffsetInNanos string `json:"OffsetInNanos,omitempty"` // TimeInSeconds AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-assetpropertytimestamp.html#cfn-iotevents-detectormodel-assetpropertytimestamp-timeinseconds TimeInSeconds string `json:"TimeInSeconds,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_assetpropertyvalue.go b/cloudformation/iotevents/aws-iotevents-detectormodel_assetpropertyvalue.go index 9753118b8f..ba004e3ad7 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_assetpropertyvalue.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_assetpropertyvalue.go @@ -19,7 +19,7 @@ type DetectorModel_AssetPropertyValue struct { Timestamp *DetectorModel_AssetPropertyTimestamp `json:"Timestamp,omitempty"` // Value AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-assetpropertyvalue.html#cfn-iotevents-detectormodel-assetpropertyvalue-value Value *DetectorModel_AssetPropertyVariant `json:"Value,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_cleartimer.go b/cloudformation/iotevents/aws-iotevents-detectormodel_cleartimer.go index 296ba0480b..757d732e5b 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_cleartimer.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_cleartimer.go @@ -9,7 +9,7 @@ import ( type DetectorModel_ClearTimer struct { // TimerName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-cleartimer.html#cfn-iotevents-detectormodel-cleartimer-timername TimerName string `json:"TimerName,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_detectormodeldefinition.go b/cloudformation/iotevents/aws-iotevents-detectormodel_detectormodeldefinition.go index 12671df2a5..287ca360f5 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_detectormodeldefinition.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_detectormodeldefinition.go @@ -9,12 +9,12 @@ import ( type DetectorModel_DetectorModelDefinition struct { // InitialStateName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-initialstatename InitialStateName string `json:"InitialStateName,omitempty"` // States AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-detectormodeldefinition.html#cfn-iotevents-detectormodel-detectormodeldefinition-states States []DetectorModel_State `json:"States,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_dynamodb.go b/cloudformation/iotevents/aws-iotevents-detectormodel_dynamodb.go index 4e411aae78..1615a10942 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_dynamodb.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_dynamodb.go @@ -9,7 +9,7 @@ import ( type DetectorModel_DynamoDB struct { // HashKeyField AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-dynamodb.html#cfn-iotevents-detectormodel-dynamodb-hashkeyfield HashKeyField string `json:"HashKeyField,omitempty"` @@ -19,7 +19,7 @@ type DetectorModel_DynamoDB struct { HashKeyType string `json:"HashKeyType,omitempty"` // HashKeyValue AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-dynamodb.html#cfn-iotevents-detectormodel-dynamodb-hashkeyvalue HashKeyValue string `json:"HashKeyValue,omitempty"` @@ -54,7 +54,7 @@ type DetectorModel_DynamoDB struct { RangeKeyValue string `json:"RangeKeyValue,omitempty"` // TableName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-dynamodb.html#cfn-iotevents-detectormodel-dynamodb-tablename TableName string `json:"TableName,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_dynamodbv2.go b/cloudformation/iotevents/aws-iotevents-detectormodel_dynamodbv2.go index d0c3935f1e..1a1aeebc4a 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_dynamodbv2.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_dynamodbv2.go @@ -14,7 +14,7 @@ type DetectorModel_DynamoDBv2 struct { Payload *DetectorModel_Payload `json:"Payload,omitempty"` // TableName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-dynamodbv2.html#cfn-iotevents-detectormodel-dynamodbv2-tablename TableName string `json:"TableName,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_event.go b/cloudformation/iotevents/aws-iotevents-detectormodel_event.go index 9821605251..071b2d866a 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_event.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_event.go @@ -19,7 +19,7 @@ type DetectorModel_Event struct { Condition string `json:"Condition,omitempty"` // EventName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-event.html#cfn-iotevents-detectormodel-event-eventname EventName string `json:"EventName,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_firehose.go b/cloudformation/iotevents/aws-iotevents-detectormodel_firehose.go index 21228ec30f..06d0332ad9 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_firehose.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_firehose.go @@ -9,7 +9,7 @@ import ( type DetectorModel_Firehose struct { // DeliveryStreamName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-firehose.html#cfn-iotevents-detectormodel-firehose-deliverystreamname DeliveryStreamName string `json:"DeliveryStreamName,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_iotevents.go b/cloudformation/iotevents/aws-iotevents-detectormodel_iotevents.go index dfc4be20ff..1418aba1fb 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_iotevents.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_iotevents.go @@ -9,7 +9,7 @@ import ( type DetectorModel_IotEvents struct { // InputName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-iotevents.html#cfn-iotevents-detectormodel-iotevents-inputname InputName string `json:"InputName,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_iotsitewise.go b/cloudformation/iotevents/aws-iotevents-detectormodel_iotsitewise.go index 592f5600f0..8cc1254aed 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_iotsitewise.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_iotsitewise.go @@ -29,7 +29,7 @@ type DetectorModel_IotSiteWise struct { PropertyId string `json:"PropertyId,omitempty"` // PropertyValue AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-iotsitewise.html#cfn-iotevents-detectormodel-iotsitewise-propertyvalue PropertyValue *DetectorModel_AssetPropertyValue `json:"PropertyValue,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_iottopicpublish.go b/cloudformation/iotevents/aws-iotevents-detectormodel_iottopicpublish.go index 27e906992d..c7b22896f3 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_iottopicpublish.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_iottopicpublish.go @@ -9,7 +9,7 @@ import ( type DetectorModel_IotTopicPublish struct { // MqttTopic AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-iottopicpublish.html#cfn-iotevents-detectormodel-iottopicpublish-mqtttopic MqttTopic string `json:"MqttTopic,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_lambda.go b/cloudformation/iotevents/aws-iotevents-detectormodel_lambda.go index 99c99c1cb4..92ab4c7a44 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_lambda.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_lambda.go @@ -9,7 +9,7 @@ import ( type DetectorModel_Lambda struct { // FunctionArn AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-lambda.html#cfn-iotevents-detectormodel-lambda-functionarn FunctionArn string `json:"FunctionArn,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_payload.go b/cloudformation/iotevents/aws-iotevents-detectormodel_payload.go index f2dbc1dae5..66f3179496 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_payload.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_payload.go @@ -9,12 +9,12 @@ import ( type DetectorModel_Payload struct { // ContentExpression AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-payload.html#cfn-iotevents-detectormodel-payload-contentexpression ContentExpression string `json:"ContentExpression,omitempty"` // Type AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-payload.html#cfn-iotevents-detectormodel-payload-type Type string `json:"Type,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_resettimer.go b/cloudformation/iotevents/aws-iotevents-detectormodel_resettimer.go index 4a214fe799..89b0024e1c 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_resettimer.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_resettimer.go @@ -9,7 +9,7 @@ import ( type DetectorModel_ResetTimer struct { // TimerName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-resettimer.html#cfn-iotevents-detectormodel-resettimer-timername TimerName string `json:"TimerName,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_settimer.go b/cloudformation/iotevents/aws-iotevents-detectormodel_settimer.go index c6298eb6f0..ec3381d5a0 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_settimer.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_settimer.go @@ -19,7 +19,7 @@ type DetectorModel_SetTimer struct { Seconds int `json:"Seconds,omitempty"` // TimerName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-settimer.html#cfn-iotevents-detectormodel-settimer-timername TimerName string `json:"TimerName,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_setvariable.go b/cloudformation/iotevents/aws-iotevents-detectormodel_setvariable.go index ccce89ee72..f642cac779 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_setvariable.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_setvariable.go @@ -9,12 +9,12 @@ import ( type DetectorModel_SetVariable struct { // Value AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-setvariable.html#cfn-iotevents-detectormodel-setvariable-value Value string `json:"Value,omitempty"` // VariableName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-setvariable.html#cfn-iotevents-detectormodel-setvariable-variablename VariableName string `json:"VariableName,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_sns.go b/cloudformation/iotevents/aws-iotevents-detectormodel_sns.go index 3c1779870e..13d64c3379 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_sns.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_sns.go @@ -14,7 +14,7 @@ type DetectorModel_Sns struct { Payload *DetectorModel_Payload `json:"Payload,omitempty"` // TargetArn AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-sns.html#cfn-iotevents-detectormodel-sns-targetarn TargetArn string `json:"TargetArn,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_sqs.go b/cloudformation/iotevents/aws-iotevents-detectormodel_sqs.go index 96010435e6..b3219e6827 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_sqs.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_sqs.go @@ -14,7 +14,7 @@ type DetectorModel_Sqs struct { Payload *DetectorModel_Payload `json:"Payload,omitempty"` // QueueUrl AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-sqs.html#cfn-iotevents-detectormodel-sqs-queueurl QueueUrl string `json:"QueueUrl,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_state.go b/cloudformation/iotevents/aws-iotevents-detectormodel_state.go index ada6b92e64..2217d07600 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_state.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_state.go @@ -24,7 +24,7 @@ type DetectorModel_State struct { OnInput *DetectorModel_OnInput `json:"OnInput,omitempty"` // StateName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-state.html#cfn-iotevents-detectormodel-state-statename StateName string `json:"StateName,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-detectormodel_transitionevent.go b/cloudformation/iotevents/aws-iotevents-detectormodel_transitionevent.go index 8935c0aa4e..59b36a7bc7 100644 --- a/cloudformation/iotevents/aws-iotevents-detectormodel_transitionevent.go +++ b/cloudformation/iotevents/aws-iotevents-detectormodel_transitionevent.go @@ -14,17 +14,17 @@ type DetectorModel_TransitionEvent struct { Actions []DetectorModel_Action `json:"Actions,omitempty"` // Condition AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-transitionevent.html#cfn-iotevents-detectormodel-transitionevent-condition Condition string `json:"Condition,omitempty"` // EventName AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-transitionevent.html#cfn-iotevents-detectormodel-transitionevent-eventname EventName string `json:"EventName,omitempty"` // NextState AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-transitionevent.html#cfn-iotevents-detectormodel-transitionevent-nextstate NextState string `json:"NextState,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-input.go b/cloudformation/iotevents/aws-iotevents-input.go index 54f6fbc60d..6e24ea3026 100644 --- a/cloudformation/iotevents/aws-iotevents-input.go +++ b/cloudformation/iotevents/aws-iotevents-input.go @@ -14,7 +14,7 @@ import ( type Input struct { // InputDefinition AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdefinition InputDefinition *Input_InputDefinition `json:"InputDefinition,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-input_attribute.go b/cloudformation/iotevents/aws-iotevents-input_attribute.go index 3a5dd31a7c..2fe9d333c9 100644 --- a/cloudformation/iotevents/aws-iotevents-input_attribute.go +++ b/cloudformation/iotevents/aws-iotevents-input_attribute.go @@ -9,7 +9,7 @@ import ( type Input_Attribute struct { // JsonPath AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-input-attribute.html#cfn-iotevents-input-attribute-jsonpath JsonPath string `json:"JsonPath,omitempty"` diff --git a/cloudformation/iotevents/aws-iotevents-input_inputdefinition.go b/cloudformation/iotevents/aws-iotevents-input_inputdefinition.go index 2275b588f3..855b4e9ea3 100644 --- a/cloudformation/iotevents/aws-iotevents-input_inputdefinition.go +++ b/cloudformation/iotevents/aws-iotevents-input_inputdefinition.go @@ -9,7 +9,7 @@ import ( type Input_InputDefinition struct { // Attributes AWS CloudFormation Property - // Required: false + // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-input-inputdefinition.html#cfn-iotevents-input-inputdefinition-attributes Attributes []Input_Attribute `json:"Attributes,omitempty"` diff --git a/cloudformation/medialive/aws-medialive-channel_encodersettings.go b/cloudformation/medialive/aws-medialive-channel_encodersettings.go index 9351799d46..810061c1b3 100644 --- a/cloudformation/medialive/aws-medialive-channel_encodersettings.go +++ b/cloudformation/medialive/aws-medialive-channel_encodersettings.go @@ -43,6 +43,11 @@ type Channel_EncoderSettings struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-encodersettings.html#cfn-medialive-channel-encodersettings-globalconfiguration GlobalConfiguration *Channel_GlobalConfiguration `json:"GlobalConfiguration,omitempty"` + // MotionGraphicsConfiguration AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-encodersettings.html#cfn-medialive-channel-encodersettings-motiongraphicsconfiguration + MotionGraphicsConfiguration *Channel_MotionGraphicsConfiguration `json:"MotionGraphicsConfiguration,omitempty"` + // NielsenConfiguration AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-encodersettings.html#cfn-medialive-channel-encodersettings-nielsenconfiguration diff --git a/cloudformation/medialive/aws-medialive-channel_htmlmotiongraphicssettings.go b/cloudformation/medialive/aws-medialive-channel_htmlmotiongraphicssettings.go new file mode 100644 index 0000000000..0d0bfb2959 --- /dev/null +++ b/cloudformation/medialive/aws-medialive-channel_htmlmotiongraphicssettings.go @@ -0,0 +1,30 @@ +package medialive + +import ( + "github.com/awslabs/goformation/v4/cloudformation/policies" +) + +// Channel_HtmlMotionGraphicsSettings AWS CloudFormation Resource (AWS::MediaLive::Channel.HtmlMotionGraphicsSettings) +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-htmlmotiongraphicssettings.html +type Channel_HtmlMotionGraphicsSettings struct { + + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy + AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` + + // AWSCloudFormationUpdateReplacePolicy represents a CloudFormation UpdateReplacePolicy + AWSCloudFormationUpdateReplacePolicy policies.UpdateReplacePolicy `json:"-"` + + // AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource + AWSCloudFormationDependsOn []string `json:"-"` + + // AWSCloudFormationMetadata stores structured data associated with this resource + AWSCloudFormationMetadata map[string]interface{} `json:"-"` + + // AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created + AWSCloudFormationCondition string `json:"-"` +} + +// AWSCloudFormationType returns the AWS CloudFormation resource type +func (r *Channel_HtmlMotionGraphicsSettings) AWSCloudFormationType() string { + return "AWS::MediaLive::Channel.HtmlMotionGraphicsSettings" +} diff --git a/cloudformation/medialive/aws-medialive-channel_motiongraphicsconfiguration.go b/cloudformation/medialive/aws-medialive-channel_motiongraphicsconfiguration.go new file mode 100644 index 0000000000..393ce9d10d --- /dev/null +++ b/cloudformation/medialive/aws-medialive-channel_motiongraphicsconfiguration.go @@ -0,0 +1,40 @@ +package medialive + +import ( + "github.com/awslabs/goformation/v4/cloudformation/policies" +) + +// Channel_MotionGraphicsConfiguration AWS CloudFormation Resource (AWS::MediaLive::Channel.MotionGraphicsConfiguration) +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-motiongraphicsconfiguration.html +type Channel_MotionGraphicsConfiguration struct { + + // MotionGraphicsInsertion AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-motiongraphicsconfiguration.html#cfn-medialive-channel-motiongraphicsconfiguration-motiongraphicsinsertion + MotionGraphicsInsertion string `json:"MotionGraphicsInsertion,omitempty"` + + // MotionGraphicsSettings AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-motiongraphicsconfiguration.html#cfn-medialive-channel-motiongraphicsconfiguration-motiongraphicssettings + MotionGraphicsSettings *Channel_MotionGraphicsSettings `json:"MotionGraphicsSettings,omitempty"` + + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy + AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` + + // AWSCloudFormationUpdateReplacePolicy represents a CloudFormation UpdateReplacePolicy + AWSCloudFormationUpdateReplacePolicy policies.UpdateReplacePolicy `json:"-"` + + // AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource + AWSCloudFormationDependsOn []string `json:"-"` + + // AWSCloudFormationMetadata stores structured data associated with this resource + AWSCloudFormationMetadata map[string]interface{} `json:"-"` + + // AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created + AWSCloudFormationCondition string `json:"-"` +} + +// AWSCloudFormationType returns the AWS CloudFormation resource type +func (r *Channel_MotionGraphicsConfiguration) AWSCloudFormationType() string { + return "AWS::MediaLive::Channel.MotionGraphicsConfiguration" +} diff --git a/cloudformation/medialive/aws-medialive-channel_motiongraphicssettings.go b/cloudformation/medialive/aws-medialive-channel_motiongraphicssettings.go new file mode 100644 index 0000000000..213f4fbfd3 --- /dev/null +++ b/cloudformation/medialive/aws-medialive-channel_motiongraphicssettings.go @@ -0,0 +1,35 @@ +package medialive + +import ( + "github.com/awslabs/goformation/v4/cloudformation/policies" +) + +// Channel_MotionGraphicsSettings AWS CloudFormation Resource (AWS::MediaLive::Channel.MotionGraphicsSettings) +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-motiongraphicssettings.html +type Channel_MotionGraphicsSettings struct { + + // HtmlMotionGraphicsSettings AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-motiongraphicssettings.html#cfn-medialive-channel-motiongraphicssettings-htmlmotiongraphicssettings + HtmlMotionGraphicsSettings *Channel_HtmlMotionGraphicsSettings `json:"HtmlMotionGraphicsSettings,omitempty"` + + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy + AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` + + // AWSCloudFormationUpdateReplacePolicy represents a CloudFormation UpdateReplacePolicy + AWSCloudFormationUpdateReplacePolicy policies.UpdateReplacePolicy `json:"-"` + + // AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource + AWSCloudFormationDependsOn []string `json:"-"` + + // AWSCloudFormationMetadata stores structured data associated with this resource + AWSCloudFormationMetadata map[string]interface{} `json:"-"` + + // AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created + AWSCloudFormationCondition string `json:"-"` +} + +// AWSCloudFormationType returns the AWS CloudFormation resource type +func (r *Channel_MotionGraphicsSettings) AWSCloudFormationType() string { + return "AWS::MediaLive::Channel.MotionGraphicsSettings" +} diff --git a/cloudformation/medialive/aws-medialive-channel_videoselector.go b/cloudformation/medialive/aws-medialive-channel_videoselector.go index fe2dc4109c..00482df50e 100644 --- a/cloudformation/medialive/aws-medialive-channel_videoselector.go +++ b/cloudformation/medialive/aws-medialive-channel_videoselector.go @@ -13,6 +13,11 @@ type Channel_VideoSelector struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselector.html#cfn-medialive-channel-videoselector-colorspace ColorSpace string `json:"ColorSpace,omitempty"` + // ColorSpaceSettings AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselector.html#cfn-medialive-channel-videoselector-colorspacesettings + ColorSpaceSettings *Channel_VideoSelectorColorSpaceSettings `json:"ColorSpaceSettings,omitempty"` + // ColorSpaceUsage AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselector.html#cfn-medialive-channel-videoselector-colorspaceusage diff --git a/cloudformation/medialive/aws-medialive-channel_videoselectorcolorspacesettings.go b/cloudformation/medialive/aws-medialive-channel_videoselectorcolorspacesettings.go new file mode 100644 index 0000000000..e889972291 --- /dev/null +++ b/cloudformation/medialive/aws-medialive-channel_videoselectorcolorspacesettings.go @@ -0,0 +1,35 @@ +package medialive + +import ( + "github.com/awslabs/goformation/v4/cloudformation/policies" +) + +// Channel_VideoSelectorColorSpaceSettings AWS CloudFormation Resource (AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings) +// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselectorcolorspacesettings.html +type Channel_VideoSelectorColorSpaceSettings struct { + + // Hdr10Settings AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-videoselectorcolorspacesettings.html#cfn-medialive-channel-videoselectorcolorspacesettings-hdr10settings + Hdr10Settings *Channel_Hdr10Settings `json:"Hdr10Settings,omitempty"` + + // AWSCloudFormationDeletionPolicy represents a CloudFormation DeletionPolicy + AWSCloudFormationDeletionPolicy policies.DeletionPolicy `json:"-"` + + // AWSCloudFormationUpdateReplacePolicy represents a CloudFormation UpdateReplacePolicy + AWSCloudFormationUpdateReplacePolicy policies.UpdateReplacePolicy `json:"-"` + + // AWSCloudFormationDependsOn stores the logical ID of the resources to be created before this resource + AWSCloudFormationDependsOn []string `json:"-"` + + // AWSCloudFormationMetadata stores structured data associated with this resource + AWSCloudFormationMetadata map[string]interface{} `json:"-"` + + // AWSCloudFormationCondition stores the logical ID of the condition that must be satisfied for this resource to be created + AWSCloudFormationCondition string `json:"-"` +} + +// AWSCloudFormationType returns the AWS CloudFormation resource type +func (r *Channel_VideoSelectorColorSpaceSettings) AWSCloudFormationType() string { + return "AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings" +} diff --git a/cloudformation/mwaa/aws-mwaa-environment.go b/cloudformation/mwaa/aws-mwaa-environment.go index 412515707e..6781f46afa 100644 --- a/cloudformation/mwaa/aws-mwaa-environment.go +++ b/cloudformation/mwaa/aws-mwaa-environment.go @@ -52,6 +52,11 @@ type Environment struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaa-environment.html#cfn-mwaa-environment-maxworkers MaxWorkers int `json:"MaxWorkers,omitempty"` + // MinWorkers AWS CloudFormation Property + // Required: false + // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaa-environment.html#cfn-mwaa-environment-minworkers + MinWorkers int `json:"MinWorkers,omitempty"` + // Name AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaa-environment.html#cfn-mwaa-environment-name diff --git a/schema/cloudformation.go b/schema/cloudformation.go index 2690820c6f..9cdd04c068 100644 --- a/schema/cloudformation.go +++ b/schema/cloudformation.go @@ -15497,6 +15497,9 @@ var CloudformationSchema = `{ "Properties": { "additionalProperties": false, "properties": { + "DefaultValue": { + "type": "string" + }, "Name": { "type": "string" }, @@ -25706,6 +25709,9 @@ var CloudformationSchema = `{ "RedshiftSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.RedshiftSettings" }, + "ResourceIdentifier": { + "type": "string" + }, "S3Settings": { "$ref": "#/definitions/AWS::DMS::Endpoint.S3Settings" }, @@ -26167,6 +26173,9 @@ var CloudformationSchema = `{ "ReplicationSubnetGroupIdentifier": { "type": "string" }, + "ResourceIdentifier": { + "type": "string" + }, "Tags": { "items": { "$ref": "#/definitions/Tag" @@ -26337,6 +26346,9 @@ var CloudformationSchema = `{ "ReplicationTaskSettings": { "type": "string" }, + "ResourceIdentifier": { + "type": "string" + }, "SourceEndpointArn": { "type": "string" }, @@ -29489,6 +29501,9 @@ var CloudformationSchema = `{ }, "type": "array" }, + "KinesisStreamSpecification": { + "$ref": "#/definitions/AWS::DynamoDB::Table.KinesisStreamSpecification" + }, "LocalSecondaryIndexes": { "items": { "$ref": "#/definitions/AWS::DynamoDB::Table.LocalSecondaryIndex" @@ -29619,6 +29634,18 @@ var CloudformationSchema = `{ ], "type": "object" }, + "AWS::DynamoDB::Table.KinesisStreamSpecification": { + "additionalProperties": false, + "properties": { + "StreamArn": { + "type": "string" + } + }, + "required": [ + "StreamArn" + ], + "type": "object" + }, "AWS::DynamoDB::Table.LocalSecondaryIndex": { "additionalProperties": false, "properties": { @@ -42241,6 +42268,12 @@ var CloudformationSchema = `{ } }, "type": "object" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -42507,6 +42540,12 @@ var CloudformationSchema = `{ "properties": { "Description": { "type": "string" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -42647,6 +42686,12 @@ var CloudformationSchema = `{ "type": "string" }, "type": "array" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -47019,12 +47064,6 @@ var CloudformationSchema = `{ "InstanceRoleARN": { "type": "string" }, - "LogPaths": { - "items": { - "type": "string" - }, - "type": "array" - }, "MaxSize": { "type": "number" }, @@ -47057,18 +47096,8 @@ var CloudformationSchema = `{ }, "ScriptId": { "type": "string" - }, - "ServerLaunchParameters": { - "type": "string" - }, - "ServerLaunchPath": { - "type": "string" } }, - "required": [ - "EC2InstanceType", - "Name" - ], "type": "object" }, "Type": { @@ -47087,8 +47116,7 @@ var CloudformationSchema = `{ } }, "required": [ - "Type", - "Properties" + "Type" ], "type": "object" }, @@ -57772,6 +57800,12 @@ var CloudformationSchema = `{ "RuleName": { "type": "string" }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" + }, "TopicRulePayload": { "$ref": "#/definitions/AWS::IoT::TopicRule.TopicRulePayload" } @@ -57808,6 +57842,9 @@ var CloudformationSchema = `{ "CloudwatchAlarm": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchAlarmAction" }, + "CloudwatchLogs": { + "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchLogsAction" + }, "CloudwatchMetric": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchMetricAction" }, @@ -57835,6 +57872,9 @@ var CloudformationSchema = `{ "IotSiteWise": { "$ref": "#/definitions/AWS::IoT::TopicRule.IotSiteWiseAction" }, + "Kafka": { + "$ref": "#/definitions/AWS::IoT::TopicRule.KafkaAction" + }, "Kinesis": { "$ref": "#/definitions/AWS::IoT::TopicRule.KinesisAction" }, @@ -57855,6 +57895,9 @@ var CloudformationSchema = `{ }, "StepFunctions": { "$ref": "#/definitions/AWS::IoT::TopicRule.StepFunctionsAction" + }, + "Timestream": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamAction" } }, "type": "object" @@ -57935,6 +57978,22 @@ var CloudformationSchema = `{ ], "type": "object" }, + "AWS::IoT::TopicRule.CloudwatchLogsAction": { + "additionalProperties": false, + "properties": { + "LogGroupName": { + "type": "string" + }, + "RoleArn": { + "type": "string" + } + }, + "required": [ + "LogGroupName", + "RoleArn" + ], + "type": "object" + }, "AWS::IoT::TopicRule.CloudwatchMetricAction": { "additionalProperties": false, "properties": { @@ -58048,6 +58107,9 @@ var CloudformationSchema = `{ "AWS::IoT::TopicRule.FirehoseAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "DeliveryStreamName": { "type": "string" }, @@ -58116,6 +58178,9 @@ var CloudformationSchema = `{ "AWS::IoT::TopicRule.IotAnalyticsAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "ChannelName": { "type": "string" }, @@ -58132,6 +58197,9 @@ var CloudformationSchema = `{ "AWS::IoT::TopicRule.IotEventsAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "InputName": { "type": "string" }, @@ -58167,6 +58235,38 @@ var CloudformationSchema = `{ ], "type": "object" }, + "AWS::IoT::TopicRule.KafkaAction": { + "additionalProperties": false, + "properties": { + "ClientProperties": { + "additionalProperties": true, + "patternProperties": { + "^[a-zA-Z0-9]+$": { + "type": "string" + } + }, + "type": "object" + }, + "DestinationArn": { + "type": "string" + }, + "Key": { + "type": "string" + }, + "Partition": { + "type": "string" + }, + "Topic": { + "type": "string" + } + }, + "required": [ + "ClientProperties", + "DestinationArn", + "Topic" + ], + "type": "object" + }, "AWS::IoT::TopicRule.KinesisAction": { "additionalProperties": false, "properties": { @@ -58353,6 +58453,77 @@ var CloudformationSchema = `{ ], "type": "object" }, + "AWS::IoT::TopicRule.TimestreamAction": { + "additionalProperties": false, + "properties": { + "DatabaseName": { + "type": "string" + }, + "Dimensions": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamDimensionsList" + }, + "RoleArn": { + "type": "string" + }, + "TableName": { + "type": "string" + }, + "Timestamp": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamTimestamp" + } + }, + "required": [ + "DatabaseName", + "Dimensions", + "RoleArn", + "TableName" + ], + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamDimension": { + "additionalProperties": false, + "properties": { + "Name": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "required": [ + "Name", + "Value" + ], + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamDimensionsList": { + "additionalProperties": false, + "properties": { + "TimestreamDimensionsList": { + "items": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamDimension" + }, + "type": "array" + } + }, + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamTimestamp": { + "additionalProperties": false, + "properties": { + "Unit": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "required": [ + "Unit", + "Value" + ], + "type": "object" + }, "AWS::IoT::TopicRule.TopicRulePayload": { "additionalProperties": false, "properties": { @@ -58380,6 +58551,7 @@ var CloudformationSchema = `{ }, "required": [ "Actions", + "RuleDisabled", "Sql" ], "type": "object" @@ -59537,6 +59709,10 @@ var CloudformationSchema = `{ "type": "array" } }, + "required": [ + "DetectorModelDefinition", + "RoleArn" + ], "type": "object" }, "Type": { @@ -59555,7 +59731,8 @@ var CloudformationSchema = `{ } }, "required": [ - "Type" + "Type", + "Properties" ], "type": "object" }, @@ -59614,6 +59791,9 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "TimeInSeconds" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyValue": { @@ -59629,6 +59809,9 @@ var CloudformationSchema = `{ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyVariant" } }, + "required": [ + "Value" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyVariant": { @@ -59656,6 +59839,9 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DetectorModelDefinition": { @@ -59671,6 +59857,10 @@ var CloudformationSchema = `{ "type": "array" } }, + "required": [ + "InitialStateName", + "States" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DynamoDB": { @@ -59707,6 +59897,11 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "HashKeyField", + "HashKeyValue", + "TableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DynamoDBv2": { @@ -59719,6 +59914,9 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "TableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Event": { @@ -59737,6 +59935,9 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "EventName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Firehose": { @@ -59752,6 +59953,9 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "DeliveryStreamName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotEvents": { @@ -59764,6 +59968,9 @@ var CloudformationSchema = `{ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "InputName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotSiteWise": { @@ -59785,6 +59992,9 @@ var CloudformationSchema = `{ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyValue" } }, + "required": [ + "PropertyValue" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotTopicPublish": { @@ -59797,6 +60007,9 @@ var CloudformationSchema = `{ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "MqttTopic" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Lambda": { @@ -59809,6 +60022,9 @@ var CloudformationSchema = `{ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "FunctionArn" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.OnEnter": { @@ -59863,6 +60079,10 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "ContentExpression", + "Type" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.ResetTimer": { @@ -59872,6 +60092,9 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.SetTimer": { @@ -59887,6 +60110,9 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.SetVariable": { @@ -59899,6 +60125,10 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "Value", + "VariableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Sns": { @@ -59911,6 +60141,9 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "TargetArn" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Sqs": { @@ -59926,6 +60159,9 @@ var CloudformationSchema = `{ "type": "boolean" } }, + "required": [ + "QueueUrl" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.State": { @@ -59944,6 +60180,9 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "StateName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.TransitionEvent": { @@ -59965,6 +60204,11 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "Condition", + "EventName", + "NextState" + ], "type": "object" }, "AWS::IoTEvents::Input": { @@ -60015,6 +60259,9 @@ var CloudformationSchema = `{ "type": "array" } }, + "required": [ + "InputDefinition" + ], "type": "object" }, "Type": { @@ -60033,7 +60280,8 @@ var CloudformationSchema = `{ } }, "required": [ - "Type" + "Type", + "Properties" ], "type": "object" }, @@ -60044,6 +60292,9 @@ var CloudformationSchema = `{ "type": "string" } }, + "required": [ + "JsonPath" + ], "type": "object" }, "AWS::IoTEvents::Input.InputDefinition": { @@ -60056,6 +60307,9 @@ var CloudformationSchema = `{ "type": "array" } }, + "required": [ + "Attributes" + ], "type": "object" }, "AWS::IoTSiteWise::AccessPolicy": { @@ -68786,6 +69040,9 @@ var CloudformationSchema = `{ "MaxWorkers": { "type": "number" }, + "MinWorkers": { + "type": "number" + }, "Name": { "type": "string" }, @@ -71286,6 +71543,9 @@ var CloudformationSchema = `{ "GlobalConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.GlobalConfiguration" }, + "MotionGraphicsConfiguration": { + "$ref": "#/definitions/AWS::MediaLive::Channel.MotionGraphicsConfiguration" + }, "NielsenConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.NielsenConfiguration" }, @@ -72044,6 +72304,11 @@ var CloudformationSchema = `{ }, "type": "object" }, + "AWS::MediaLive::Channel.HtmlMotionGraphicsSettings": { + "additionalProperties": false, + "properties": {}, + "type": "object" + }, "AWS::MediaLive::Channel.InputAttachment": { "additionalProperties": false, "properties": { @@ -72412,6 +72677,27 @@ var CloudformationSchema = `{ "properties": {}, "type": "object" }, + "AWS::MediaLive::Channel.MotionGraphicsConfiguration": { + "additionalProperties": false, + "properties": { + "MotionGraphicsInsertion": { + "type": "string" + }, + "MotionGraphicsSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.MotionGraphicsSettings" + } + }, + "type": "object" + }, + "AWS::MediaLive::Channel.MotionGraphicsSettings": { + "additionalProperties": false, + "properties": { + "HtmlMotionGraphicsSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.HtmlMotionGraphicsSettings" + } + }, + "type": "object" + }, "AWS::MediaLive::Channel.Mp2Settings": { "additionalProperties": false, "properties": { @@ -73107,6 +73393,9 @@ var CloudformationSchema = `{ "ColorSpace": { "type": "string" }, + "ColorSpaceSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings" + }, "ColorSpaceUsage": { "type": "string" }, @@ -73116,6 +73405,15 @@ var CloudformationSchema = `{ }, "type": "object" }, + "AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings": { + "additionalProperties": false, + "properties": { + "Hdr10Settings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.Hdr10Settings" + } + }, + "type": "object" + }, "AWS::MediaLive::Channel.VideoSelectorPid": { "additionalProperties": false, "properties": { diff --git a/schema/cloudformation.schema.json b/schema/cloudformation.schema.json index 391a1be05c..41ca194777 100644 --- a/schema/cloudformation.schema.json +++ b/schema/cloudformation.schema.json @@ -15494,6 +15494,9 @@ "Properties": { "additionalProperties": false, "properties": { + "DefaultValue": { + "type": "string" + }, "Name": { "type": "string" }, @@ -25703,6 +25706,9 @@ "RedshiftSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.RedshiftSettings" }, + "ResourceIdentifier": { + "type": "string" + }, "S3Settings": { "$ref": "#/definitions/AWS::DMS::Endpoint.S3Settings" }, @@ -26164,6 +26170,9 @@ "ReplicationSubnetGroupIdentifier": { "type": "string" }, + "ResourceIdentifier": { + "type": "string" + }, "Tags": { "items": { "$ref": "#/definitions/Tag" @@ -26334,6 +26343,9 @@ "ReplicationTaskSettings": { "type": "string" }, + "ResourceIdentifier": { + "type": "string" + }, "SourceEndpointArn": { "type": "string" }, @@ -29486,6 +29498,9 @@ }, "type": "array" }, + "KinesisStreamSpecification": { + "$ref": "#/definitions/AWS::DynamoDB::Table.KinesisStreamSpecification" + }, "LocalSecondaryIndexes": { "items": { "$ref": "#/definitions/AWS::DynamoDB::Table.LocalSecondaryIndex" @@ -29616,6 +29631,18 @@ ], "type": "object" }, + "AWS::DynamoDB::Table.KinesisStreamSpecification": { + "additionalProperties": false, + "properties": { + "StreamArn": { + "type": "string" + } + }, + "required": [ + "StreamArn" + ], + "type": "object" + }, "AWS::DynamoDB::Table.LocalSecondaryIndex": { "additionalProperties": false, "properties": { @@ -42238,6 +42265,12 @@ } }, "type": "object" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -42504,6 +42537,12 @@ "properties": { "Description": { "type": "string" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -42644,6 +42683,12 @@ "type": "string" }, "type": "array" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -47016,12 +47061,6 @@ "InstanceRoleARN": { "type": "string" }, - "LogPaths": { - "items": { - "type": "string" - }, - "type": "array" - }, "MaxSize": { "type": "number" }, @@ -47054,18 +47093,8 @@ }, "ScriptId": { "type": "string" - }, - "ServerLaunchParameters": { - "type": "string" - }, - "ServerLaunchPath": { - "type": "string" } }, - "required": [ - "EC2InstanceType", - "Name" - ], "type": "object" }, "Type": { @@ -47084,8 +47113,7 @@ } }, "required": [ - "Type", - "Properties" + "Type" ], "type": "object" }, @@ -57769,6 +57797,12 @@ "RuleName": { "type": "string" }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" + }, "TopicRulePayload": { "$ref": "#/definitions/AWS::IoT::TopicRule.TopicRulePayload" } @@ -57805,6 +57839,9 @@ "CloudwatchAlarm": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchAlarmAction" }, + "CloudwatchLogs": { + "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchLogsAction" + }, "CloudwatchMetric": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchMetricAction" }, @@ -57832,6 +57869,9 @@ "IotSiteWise": { "$ref": "#/definitions/AWS::IoT::TopicRule.IotSiteWiseAction" }, + "Kafka": { + "$ref": "#/definitions/AWS::IoT::TopicRule.KafkaAction" + }, "Kinesis": { "$ref": "#/definitions/AWS::IoT::TopicRule.KinesisAction" }, @@ -57852,6 +57892,9 @@ }, "StepFunctions": { "$ref": "#/definitions/AWS::IoT::TopicRule.StepFunctionsAction" + }, + "Timestream": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamAction" } }, "type": "object" @@ -57932,6 +57975,22 @@ ], "type": "object" }, + "AWS::IoT::TopicRule.CloudwatchLogsAction": { + "additionalProperties": false, + "properties": { + "LogGroupName": { + "type": "string" + }, + "RoleArn": { + "type": "string" + } + }, + "required": [ + "LogGroupName", + "RoleArn" + ], + "type": "object" + }, "AWS::IoT::TopicRule.CloudwatchMetricAction": { "additionalProperties": false, "properties": { @@ -58045,6 +58104,9 @@ "AWS::IoT::TopicRule.FirehoseAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "DeliveryStreamName": { "type": "string" }, @@ -58113,6 +58175,9 @@ "AWS::IoT::TopicRule.IotAnalyticsAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "ChannelName": { "type": "string" }, @@ -58129,6 +58194,9 @@ "AWS::IoT::TopicRule.IotEventsAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "InputName": { "type": "string" }, @@ -58164,6 +58232,38 @@ ], "type": "object" }, + "AWS::IoT::TopicRule.KafkaAction": { + "additionalProperties": false, + "properties": { + "ClientProperties": { + "additionalProperties": true, + "patternProperties": { + "^[a-zA-Z0-9]+$": { + "type": "string" + } + }, + "type": "object" + }, + "DestinationArn": { + "type": "string" + }, + "Key": { + "type": "string" + }, + "Partition": { + "type": "string" + }, + "Topic": { + "type": "string" + } + }, + "required": [ + "ClientProperties", + "DestinationArn", + "Topic" + ], + "type": "object" + }, "AWS::IoT::TopicRule.KinesisAction": { "additionalProperties": false, "properties": { @@ -58350,6 +58450,77 @@ ], "type": "object" }, + "AWS::IoT::TopicRule.TimestreamAction": { + "additionalProperties": false, + "properties": { + "DatabaseName": { + "type": "string" + }, + "Dimensions": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamDimensionsList" + }, + "RoleArn": { + "type": "string" + }, + "TableName": { + "type": "string" + }, + "Timestamp": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamTimestamp" + } + }, + "required": [ + "DatabaseName", + "Dimensions", + "RoleArn", + "TableName" + ], + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamDimension": { + "additionalProperties": false, + "properties": { + "Name": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "required": [ + "Name", + "Value" + ], + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamDimensionsList": { + "additionalProperties": false, + "properties": { + "TimestreamDimensionsList": { + "items": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamDimension" + }, + "type": "array" + } + }, + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamTimestamp": { + "additionalProperties": false, + "properties": { + "Unit": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "required": [ + "Unit", + "Value" + ], + "type": "object" + }, "AWS::IoT::TopicRule.TopicRulePayload": { "additionalProperties": false, "properties": { @@ -58377,6 +58548,7 @@ }, "required": [ "Actions", + "RuleDisabled", "Sql" ], "type": "object" @@ -59534,6 +59706,10 @@ "type": "array" } }, + "required": [ + "DetectorModelDefinition", + "RoleArn" + ], "type": "object" }, "Type": { @@ -59552,7 +59728,8 @@ } }, "required": [ - "Type" + "Type", + "Properties" ], "type": "object" }, @@ -59611,6 +59788,9 @@ "type": "string" } }, + "required": [ + "TimeInSeconds" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyValue": { @@ -59626,6 +59806,9 @@ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyVariant" } }, + "required": [ + "Value" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyVariant": { @@ -59653,6 +59836,9 @@ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DetectorModelDefinition": { @@ -59668,6 +59854,10 @@ "type": "array" } }, + "required": [ + "InitialStateName", + "States" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DynamoDB": { @@ -59704,6 +59894,11 @@ "type": "string" } }, + "required": [ + "HashKeyField", + "HashKeyValue", + "TableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DynamoDBv2": { @@ -59716,6 +59911,9 @@ "type": "string" } }, + "required": [ + "TableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Event": { @@ -59734,6 +59932,9 @@ "type": "string" } }, + "required": [ + "EventName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Firehose": { @@ -59749,6 +59950,9 @@ "type": "string" } }, + "required": [ + "DeliveryStreamName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotEvents": { @@ -59761,6 +59965,9 @@ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "InputName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotSiteWise": { @@ -59782,6 +59989,9 @@ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyValue" } }, + "required": [ + "PropertyValue" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotTopicPublish": { @@ -59794,6 +60004,9 @@ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "MqttTopic" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Lambda": { @@ -59806,6 +60019,9 @@ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "FunctionArn" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.OnEnter": { @@ -59860,6 +60076,10 @@ "type": "string" } }, + "required": [ + "ContentExpression", + "Type" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.ResetTimer": { @@ -59869,6 +60089,9 @@ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.SetTimer": { @@ -59884,6 +60107,9 @@ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.SetVariable": { @@ -59896,6 +60122,10 @@ "type": "string" } }, + "required": [ + "Value", + "VariableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Sns": { @@ -59908,6 +60138,9 @@ "type": "string" } }, + "required": [ + "TargetArn" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Sqs": { @@ -59923,6 +60156,9 @@ "type": "boolean" } }, + "required": [ + "QueueUrl" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.State": { @@ -59941,6 +60177,9 @@ "type": "string" } }, + "required": [ + "StateName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.TransitionEvent": { @@ -59962,6 +60201,11 @@ "type": "string" } }, + "required": [ + "Condition", + "EventName", + "NextState" + ], "type": "object" }, "AWS::IoTEvents::Input": { @@ -60012,6 +60256,9 @@ "type": "array" } }, + "required": [ + "InputDefinition" + ], "type": "object" }, "Type": { @@ -60030,7 +60277,8 @@ } }, "required": [ - "Type" + "Type", + "Properties" ], "type": "object" }, @@ -60041,6 +60289,9 @@ "type": "string" } }, + "required": [ + "JsonPath" + ], "type": "object" }, "AWS::IoTEvents::Input.InputDefinition": { @@ -60053,6 +60304,9 @@ "type": "array" } }, + "required": [ + "Attributes" + ], "type": "object" }, "AWS::IoTSiteWise::AccessPolicy": { @@ -68783,6 +69037,9 @@ "MaxWorkers": { "type": "number" }, + "MinWorkers": { + "type": "number" + }, "Name": { "type": "string" }, @@ -71283,6 +71540,9 @@ "GlobalConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.GlobalConfiguration" }, + "MotionGraphicsConfiguration": { + "$ref": "#/definitions/AWS::MediaLive::Channel.MotionGraphicsConfiguration" + }, "NielsenConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.NielsenConfiguration" }, @@ -72041,6 +72301,11 @@ }, "type": "object" }, + "AWS::MediaLive::Channel.HtmlMotionGraphicsSettings": { + "additionalProperties": false, + "properties": {}, + "type": "object" + }, "AWS::MediaLive::Channel.InputAttachment": { "additionalProperties": false, "properties": { @@ -72409,6 +72674,27 @@ "properties": {}, "type": "object" }, + "AWS::MediaLive::Channel.MotionGraphicsConfiguration": { + "additionalProperties": false, + "properties": { + "MotionGraphicsInsertion": { + "type": "string" + }, + "MotionGraphicsSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.MotionGraphicsSettings" + } + }, + "type": "object" + }, + "AWS::MediaLive::Channel.MotionGraphicsSettings": { + "additionalProperties": false, + "properties": { + "HtmlMotionGraphicsSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.HtmlMotionGraphicsSettings" + } + }, + "type": "object" + }, "AWS::MediaLive::Channel.Mp2Settings": { "additionalProperties": false, "properties": { @@ -73104,6 +73390,9 @@ "ColorSpace": { "type": "string" }, + "ColorSpaceSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings" + }, "ColorSpaceUsage": { "type": "string" }, @@ -73113,6 +73402,15 @@ }, "type": "object" }, + "AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings": { + "additionalProperties": false, + "properties": { + "Hdr10Settings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.Hdr10Settings" + } + }, + "type": "object" + }, "AWS::MediaLive::Channel.VideoSelectorPid": { "additionalProperties": false, "properties": { diff --git a/schema/sam.go b/schema/sam.go index f9bb4c8161..6aa91cd0e0 100644 --- a/schema/sam.go +++ b/schema/sam.go @@ -15497,6 +15497,9 @@ var SamSchema = `{ "Properties": { "additionalProperties": false, "properties": { + "DefaultValue": { + "type": "string" + }, "Name": { "type": "string" }, @@ -25706,6 +25709,9 @@ var SamSchema = `{ "RedshiftSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.RedshiftSettings" }, + "ResourceIdentifier": { + "type": "string" + }, "S3Settings": { "$ref": "#/definitions/AWS::DMS::Endpoint.S3Settings" }, @@ -26167,6 +26173,9 @@ var SamSchema = `{ "ReplicationSubnetGroupIdentifier": { "type": "string" }, + "ResourceIdentifier": { + "type": "string" + }, "Tags": { "items": { "$ref": "#/definitions/Tag" @@ -26337,6 +26346,9 @@ var SamSchema = `{ "ReplicationTaskSettings": { "type": "string" }, + "ResourceIdentifier": { + "type": "string" + }, "SourceEndpointArn": { "type": "string" }, @@ -29489,6 +29501,9 @@ var SamSchema = `{ }, "type": "array" }, + "KinesisStreamSpecification": { + "$ref": "#/definitions/AWS::DynamoDB::Table.KinesisStreamSpecification" + }, "LocalSecondaryIndexes": { "items": { "$ref": "#/definitions/AWS::DynamoDB::Table.LocalSecondaryIndex" @@ -29619,6 +29634,18 @@ var SamSchema = `{ ], "type": "object" }, + "AWS::DynamoDB::Table.KinesisStreamSpecification": { + "additionalProperties": false, + "properties": { + "StreamArn": { + "type": "string" + } + }, + "required": [ + "StreamArn" + ], + "type": "object" + }, "AWS::DynamoDB::Table.LocalSecondaryIndex": { "additionalProperties": false, "properties": { @@ -42241,6 +42268,12 @@ var SamSchema = `{ } }, "type": "object" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -42507,6 +42540,12 @@ var SamSchema = `{ "properties": { "Description": { "type": "string" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -42647,6 +42686,12 @@ var SamSchema = `{ "type": "string" }, "type": "array" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -47019,12 +47064,6 @@ var SamSchema = `{ "InstanceRoleARN": { "type": "string" }, - "LogPaths": { - "items": { - "type": "string" - }, - "type": "array" - }, "MaxSize": { "type": "number" }, @@ -47057,18 +47096,8 @@ var SamSchema = `{ }, "ScriptId": { "type": "string" - }, - "ServerLaunchParameters": { - "type": "string" - }, - "ServerLaunchPath": { - "type": "string" } }, - "required": [ - "EC2InstanceType", - "Name" - ], "type": "object" }, "Type": { @@ -47087,8 +47116,7 @@ var SamSchema = `{ } }, "required": [ - "Type", - "Properties" + "Type" ], "type": "object" }, @@ -57772,6 +57800,12 @@ var SamSchema = `{ "RuleName": { "type": "string" }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" + }, "TopicRulePayload": { "$ref": "#/definitions/AWS::IoT::TopicRule.TopicRulePayload" } @@ -57808,6 +57842,9 @@ var SamSchema = `{ "CloudwatchAlarm": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchAlarmAction" }, + "CloudwatchLogs": { + "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchLogsAction" + }, "CloudwatchMetric": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchMetricAction" }, @@ -57835,6 +57872,9 @@ var SamSchema = `{ "IotSiteWise": { "$ref": "#/definitions/AWS::IoT::TopicRule.IotSiteWiseAction" }, + "Kafka": { + "$ref": "#/definitions/AWS::IoT::TopicRule.KafkaAction" + }, "Kinesis": { "$ref": "#/definitions/AWS::IoT::TopicRule.KinesisAction" }, @@ -57855,6 +57895,9 @@ var SamSchema = `{ }, "StepFunctions": { "$ref": "#/definitions/AWS::IoT::TopicRule.StepFunctionsAction" + }, + "Timestream": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamAction" } }, "type": "object" @@ -57935,6 +57978,22 @@ var SamSchema = `{ ], "type": "object" }, + "AWS::IoT::TopicRule.CloudwatchLogsAction": { + "additionalProperties": false, + "properties": { + "LogGroupName": { + "type": "string" + }, + "RoleArn": { + "type": "string" + } + }, + "required": [ + "LogGroupName", + "RoleArn" + ], + "type": "object" + }, "AWS::IoT::TopicRule.CloudwatchMetricAction": { "additionalProperties": false, "properties": { @@ -58048,6 +58107,9 @@ var SamSchema = `{ "AWS::IoT::TopicRule.FirehoseAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "DeliveryStreamName": { "type": "string" }, @@ -58116,6 +58178,9 @@ var SamSchema = `{ "AWS::IoT::TopicRule.IotAnalyticsAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "ChannelName": { "type": "string" }, @@ -58132,6 +58197,9 @@ var SamSchema = `{ "AWS::IoT::TopicRule.IotEventsAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "InputName": { "type": "string" }, @@ -58167,6 +58235,38 @@ var SamSchema = `{ ], "type": "object" }, + "AWS::IoT::TopicRule.KafkaAction": { + "additionalProperties": false, + "properties": { + "ClientProperties": { + "additionalProperties": true, + "patternProperties": { + "^[a-zA-Z0-9]+$": { + "type": "string" + } + }, + "type": "object" + }, + "DestinationArn": { + "type": "string" + }, + "Key": { + "type": "string" + }, + "Partition": { + "type": "string" + }, + "Topic": { + "type": "string" + } + }, + "required": [ + "ClientProperties", + "DestinationArn", + "Topic" + ], + "type": "object" + }, "AWS::IoT::TopicRule.KinesisAction": { "additionalProperties": false, "properties": { @@ -58353,6 +58453,77 @@ var SamSchema = `{ ], "type": "object" }, + "AWS::IoT::TopicRule.TimestreamAction": { + "additionalProperties": false, + "properties": { + "DatabaseName": { + "type": "string" + }, + "Dimensions": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamDimensionsList" + }, + "RoleArn": { + "type": "string" + }, + "TableName": { + "type": "string" + }, + "Timestamp": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamTimestamp" + } + }, + "required": [ + "DatabaseName", + "Dimensions", + "RoleArn", + "TableName" + ], + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamDimension": { + "additionalProperties": false, + "properties": { + "Name": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "required": [ + "Name", + "Value" + ], + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamDimensionsList": { + "additionalProperties": false, + "properties": { + "TimestreamDimensionsList": { + "items": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamDimension" + }, + "type": "array" + } + }, + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamTimestamp": { + "additionalProperties": false, + "properties": { + "Unit": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "required": [ + "Unit", + "Value" + ], + "type": "object" + }, "AWS::IoT::TopicRule.TopicRulePayload": { "additionalProperties": false, "properties": { @@ -58380,6 +58551,7 @@ var SamSchema = `{ }, "required": [ "Actions", + "RuleDisabled", "Sql" ], "type": "object" @@ -59537,6 +59709,10 @@ var SamSchema = `{ "type": "array" } }, + "required": [ + "DetectorModelDefinition", + "RoleArn" + ], "type": "object" }, "Type": { @@ -59555,7 +59731,8 @@ var SamSchema = `{ } }, "required": [ - "Type" + "Type", + "Properties" ], "type": "object" }, @@ -59614,6 +59791,9 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "TimeInSeconds" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyValue": { @@ -59629,6 +59809,9 @@ var SamSchema = `{ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyVariant" } }, + "required": [ + "Value" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyVariant": { @@ -59656,6 +59839,9 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DetectorModelDefinition": { @@ -59671,6 +59857,10 @@ var SamSchema = `{ "type": "array" } }, + "required": [ + "InitialStateName", + "States" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DynamoDB": { @@ -59707,6 +59897,11 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "HashKeyField", + "HashKeyValue", + "TableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DynamoDBv2": { @@ -59719,6 +59914,9 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "TableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Event": { @@ -59737,6 +59935,9 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "EventName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Firehose": { @@ -59752,6 +59953,9 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "DeliveryStreamName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotEvents": { @@ -59764,6 +59968,9 @@ var SamSchema = `{ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "InputName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotSiteWise": { @@ -59785,6 +59992,9 @@ var SamSchema = `{ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyValue" } }, + "required": [ + "PropertyValue" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotTopicPublish": { @@ -59797,6 +60007,9 @@ var SamSchema = `{ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "MqttTopic" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Lambda": { @@ -59809,6 +60022,9 @@ var SamSchema = `{ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "FunctionArn" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.OnEnter": { @@ -59863,6 +60079,10 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "ContentExpression", + "Type" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.ResetTimer": { @@ -59872,6 +60092,9 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.SetTimer": { @@ -59887,6 +60110,9 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.SetVariable": { @@ -59899,6 +60125,10 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "Value", + "VariableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Sns": { @@ -59911,6 +60141,9 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "TargetArn" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Sqs": { @@ -59926,6 +60159,9 @@ var SamSchema = `{ "type": "boolean" } }, + "required": [ + "QueueUrl" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.State": { @@ -59944,6 +60180,9 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "StateName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.TransitionEvent": { @@ -59965,6 +60204,11 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "Condition", + "EventName", + "NextState" + ], "type": "object" }, "AWS::IoTEvents::Input": { @@ -60015,6 +60259,9 @@ var SamSchema = `{ "type": "array" } }, + "required": [ + "InputDefinition" + ], "type": "object" }, "Type": { @@ -60033,7 +60280,8 @@ var SamSchema = `{ } }, "required": [ - "Type" + "Type", + "Properties" ], "type": "object" }, @@ -60044,6 +60292,9 @@ var SamSchema = `{ "type": "string" } }, + "required": [ + "JsonPath" + ], "type": "object" }, "AWS::IoTEvents::Input.InputDefinition": { @@ -60056,6 +60307,9 @@ var SamSchema = `{ "type": "array" } }, + "required": [ + "Attributes" + ], "type": "object" }, "AWS::IoTSiteWise::AccessPolicy": { @@ -68786,6 +69040,9 @@ var SamSchema = `{ "MaxWorkers": { "type": "number" }, + "MinWorkers": { + "type": "number" + }, "Name": { "type": "string" }, @@ -71286,6 +71543,9 @@ var SamSchema = `{ "GlobalConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.GlobalConfiguration" }, + "MotionGraphicsConfiguration": { + "$ref": "#/definitions/AWS::MediaLive::Channel.MotionGraphicsConfiguration" + }, "NielsenConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.NielsenConfiguration" }, @@ -72044,6 +72304,11 @@ var SamSchema = `{ }, "type": "object" }, + "AWS::MediaLive::Channel.HtmlMotionGraphicsSettings": { + "additionalProperties": false, + "properties": {}, + "type": "object" + }, "AWS::MediaLive::Channel.InputAttachment": { "additionalProperties": false, "properties": { @@ -72412,6 +72677,27 @@ var SamSchema = `{ "properties": {}, "type": "object" }, + "AWS::MediaLive::Channel.MotionGraphicsConfiguration": { + "additionalProperties": false, + "properties": { + "MotionGraphicsInsertion": { + "type": "string" + }, + "MotionGraphicsSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.MotionGraphicsSettings" + } + }, + "type": "object" + }, + "AWS::MediaLive::Channel.MotionGraphicsSettings": { + "additionalProperties": false, + "properties": { + "HtmlMotionGraphicsSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.HtmlMotionGraphicsSettings" + } + }, + "type": "object" + }, "AWS::MediaLive::Channel.Mp2Settings": { "additionalProperties": false, "properties": { @@ -73107,6 +73393,9 @@ var SamSchema = `{ "ColorSpace": { "type": "string" }, + "ColorSpaceSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings" + }, "ColorSpaceUsage": { "type": "string" }, @@ -73116,6 +73405,15 @@ var SamSchema = `{ }, "type": "object" }, + "AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings": { + "additionalProperties": false, + "properties": { + "Hdr10Settings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.Hdr10Settings" + } + }, + "type": "object" + }, "AWS::MediaLive::Channel.VideoSelectorPid": { "additionalProperties": false, "properties": { diff --git a/schema/sam.schema.json b/schema/sam.schema.json index c30cb1c2e7..7839aa5dae 100644 --- a/schema/sam.schema.json +++ b/schema/sam.schema.json @@ -15494,6 +15494,9 @@ "Properties": { "additionalProperties": false, "properties": { + "DefaultValue": { + "type": "string" + }, "Name": { "type": "string" }, @@ -25703,6 +25706,9 @@ "RedshiftSettings": { "$ref": "#/definitions/AWS::DMS::Endpoint.RedshiftSettings" }, + "ResourceIdentifier": { + "type": "string" + }, "S3Settings": { "$ref": "#/definitions/AWS::DMS::Endpoint.S3Settings" }, @@ -26164,6 +26170,9 @@ "ReplicationSubnetGroupIdentifier": { "type": "string" }, + "ResourceIdentifier": { + "type": "string" + }, "Tags": { "items": { "$ref": "#/definitions/Tag" @@ -26334,6 +26343,9 @@ "ReplicationTaskSettings": { "type": "string" }, + "ResourceIdentifier": { + "type": "string" + }, "SourceEndpointArn": { "type": "string" }, @@ -29486,6 +29498,9 @@ }, "type": "array" }, + "KinesisStreamSpecification": { + "$ref": "#/definitions/AWS::DynamoDB::Table.KinesisStreamSpecification" + }, "LocalSecondaryIndexes": { "items": { "$ref": "#/definitions/AWS::DynamoDB::Table.LocalSecondaryIndex" @@ -29616,6 +29631,18 @@ ], "type": "object" }, + "AWS::DynamoDB::Table.KinesisStreamSpecification": { + "additionalProperties": false, + "properties": { + "StreamArn": { + "type": "string" + } + }, + "required": [ + "StreamArn" + ], + "type": "object" + }, "AWS::DynamoDB::Table.LocalSecondaryIndex": { "additionalProperties": false, "properties": { @@ -42238,6 +42265,12 @@ } }, "type": "object" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -42504,6 +42537,12 @@ "properties": { "Description": { "type": "string" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -42644,6 +42683,12 @@ "type": "string" }, "type": "array" + }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" } }, "required": [ @@ -47016,12 +47061,6 @@ "InstanceRoleARN": { "type": "string" }, - "LogPaths": { - "items": { - "type": "string" - }, - "type": "array" - }, "MaxSize": { "type": "number" }, @@ -47054,18 +47093,8 @@ }, "ScriptId": { "type": "string" - }, - "ServerLaunchParameters": { - "type": "string" - }, - "ServerLaunchPath": { - "type": "string" } }, - "required": [ - "EC2InstanceType", - "Name" - ], "type": "object" }, "Type": { @@ -47084,8 +47113,7 @@ } }, "required": [ - "Type", - "Properties" + "Type" ], "type": "object" }, @@ -57769,6 +57797,12 @@ "RuleName": { "type": "string" }, + "Tags": { + "items": { + "$ref": "#/definitions/Tag" + }, + "type": "array" + }, "TopicRulePayload": { "$ref": "#/definitions/AWS::IoT::TopicRule.TopicRulePayload" } @@ -57805,6 +57839,9 @@ "CloudwatchAlarm": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchAlarmAction" }, + "CloudwatchLogs": { + "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchLogsAction" + }, "CloudwatchMetric": { "$ref": "#/definitions/AWS::IoT::TopicRule.CloudwatchMetricAction" }, @@ -57832,6 +57869,9 @@ "IotSiteWise": { "$ref": "#/definitions/AWS::IoT::TopicRule.IotSiteWiseAction" }, + "Kafka": { + "$ref": "#/definitions/AWS::IoT::TopicRule.KafkaAction" + }, "Kinesis": { "$ref": "#/definitions/AWS::IoT::TopicRule.KinesisAction" }, @@ -57852,6 +57892,9 @@ }, "StepFunctions": { "$ref": "#/definitions/AWS::IoT::TopicRule.StepFunctionsAction" + }, + "Timestream": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamAction" } }, "type": "object" @@ -57932,6 +57975,22 @@ ], "type": "object" }, + "AWS::IoT::TopicRule.CloudwatchLogsAction": { + "additionalProperties": false, + "properties": { + "LogGroupName": { + "type": "string" + }, + "RoleArn": { + "type": "string" + } + }, + "required": [ + "LogGroupName", + "RoleArn" + ], + "type": "object" + }, "AWS::IoT::TopicRule.CloudwatchMetricAction": { "additionalProperties": false, "properties": { @@ -58045,6 +58104,9 @@ "AWS::IoT::TopicRule.FirehoseAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "DeliveryStreamName": { "type": "string" }, @@ -58113,6 +58175,9 @@ "AWS::IoT::TopicRule.IotAnalyticsAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "ChannelName": { "type": "string" }, @@ -58129,6 +58194,9 @@ "AWS::IoT::TopicRule.IotEventsAction": { "additionalProperties": false, "properties": { + "BatchMode": { + "type": "boolean" + }, "InputName": { "type": "string" }, @@ -58164,6 +58232,38 @@ ], "type": "object" }, + "AWS::IoT::TopicRule.KafkaAction": { + "additionalProperties": false, + "properties": { + "ClientProperties": { + "additionalProperties": true, + "patternProperties": { + "^[a-zA-Z0-9]+$": { + "type": "string" + } + }, + "type": "object" + }, + "DestinationArn": { + "type": "string" + }, + "Key": { + "type": "string" + }, + "Partition": { + "type": "string" + }, + "Topic": { + "type": "string" + } + }, + "required": [ + "ClientProperties", + "DestinationArn", + "Topic" + ], + "type": "object" + }, "AWS::IoT::TopicRule.KinesisAction": { "additionalProperties": false, "properties": { @@ -58350,6 +58450,77 @@ ], "type": "object" }, + "AWS::IoT::TopicRule.TimestreamAction": { + "additionalProperties": false, + "properties": { + "DatabaseName": { + "type": "string" + }, + "Dimensions": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamDimensionsList" + }, + "RoleArn": { + "type": "string" + }, + "TableName": { + "type": "string" + }, + "Timestamp": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamTimestamp" + } + }, + "required": [ + "DatabaseName", + "Dimensions", + "RoleArn", + "TableName" + ], + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamDimension": { + "additionalProperties": false, + "properties": { + "Name": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "required": [ + "Name", + "Value" + ], + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamDimensionsList": { + "additionalProperties": false, + "properties": { + "TimestreamDimensionsList": { + "items": { + "$ref": "#/definitions/AWS::IoT::TopicRule.TimestreamDimension" + }, + "type": "array" + } + }, + "type": "object" + }, + "AWS::IoT::TopicRule.TimestreamTimestamp": { + "additionalProperties": false, + "properties": { + "Unit": { + "type": "string" + }, + "Value": { + "type": "string" + } + }, + "required": [ + "Unit", + "Value" + ], + "type": "object" + }, "AWS::IoT::TopicRule.TopicRulePayload": { "additionalProperties": false, "properties": { @@ -58377,6 +58548,7 @@ }, "required": [ "Actions", + "RuleDisabled", "Sql" ], "type": "object" @@ -59534,6 +59706,10 @@ "type": "array" } }, + "required": [ + "DetectorModelDefinition", + "RoleArn" + ], "type": "object" }, "Type": { @@ -59552,7 +59728,8 @@ } }, "required": [ - "Type" + "Type", + "Properties" ], "type": "object" }, @@ -59611,6 +59788,9 @@ "type": "string" } }, + "required": [ + "TimeInSeconds" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyValue": { @@ -59626,6 +59806,9 @@ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyVariant" } }, + "required": [ + "Value" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.AssetPropertyVariant": { @@ -59653,6 +59836,9 @@ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DetectorModelDefinition": { @@ -59668,6 +59854,10 @@ "type": "array" } }, + "required": [ + "InitialStateName", + "States" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DynamoDB": { @@ -59704,6 +59894,11 @@ "type": "string" } }, + "required": [ + "HashKeyField", + "HashKeyValue", + "TableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.DynamoDBv2": { @@ -59716,6 +59911,9 @@ "type": "string" } }, + "required": [ + "TableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Event": { @@ -59734,6 +59932,9 @@ "type": "string" } }, + "required": [ + "EventName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Firehose": { @@ -59749,6 +59950,9 @@ "type": "string" } }, + "required": [ + "DeliveryStreamName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotEvents": { @@ -59761,6 +59965,9 @@ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "InputName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotSiteWise": { @@ -59782,6 +59989,9 @@ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.AssetPropertyValue" } }, + "required": [ + "PropertyValue" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.IotTopicPublish": { @@ -59794,6 +60004,9 @@ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "MqttTopic" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Lambda": { @@ -59806,6 +60019,9 @@ "$ref": "#/definitions/AWS::IoTEvents::DetectorModel.Payload" } }, + "required": [ + "FunctionArn" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.OnEnter": { @@ -59860,6 +60076,10 @@ "type": "string" } }, + "required": [ + "ContentExpression", + "Type" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.ResetTimer": { @@ -59869,6 +60089,9 @@ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.SetTimer": { @@ -59884,6 +60107,9 @@ "type": "string" } }, + "required": [ + "TimerName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.SetVariable": { @@ -59896,6 +60122,10 @@ "type": "string" } }, + "required": [ + "Value", + "VariableName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Sns": { @@ -59908,6 +60138,9 @@ "type": "string" } }, + "required": [ + "TargetArn" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.Sqs": { @@ -59923,6 +60156,9 @@ "type": "boolean" } }, + "required": [ + "QueueUrl" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.State": { @@ -59941,6 +60177,9 @@ "type": "string" } }, + "required": [ + "StateName" + ], "type": "object" }, "AWS::IoTEvents::DetectorModel.TransitionEvent": { @@ -59962,6 +60201,11 @@ "type": "string" } }, + "required": [ + "Condition", + "EventName", + "NextState" + ], "type": "object" }, "AWS::IoTEvents::Input": { @@ -60012,6 +60256,9 @@ "type": "array" } }, + "required": [ + "InputDefinition" + ], "type": "object" }, "Type": { @@ -60030,7 +60277,8 @@ } }, "required": [ - "Type" + "Type", + "Properties" ], "type": "object" }, @@ -60041,6 +60289,9 @@ "type": "string" } }, + "required": [ + "JsonPath" + ], "type": "object" }, "AWS::IoTEvents::Input.InputDefinition": { @@ -60053,6 +60304,9 @@ "type": "array" } }, + "required": [ + "Attributes" + ], "type": "object" }, "AWS::IoTSiteWise::AccessPolicy": { @@ -68783,6 +69037,9 @@ "MaxWorkers": { "type": "number" }, + "MinWorkers": { + "type": "number" + }, "Name": { "type": "string" }, @@ -71283,6 +71540,9 @@ "GlobalConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.GlobalConfiguration" }, + "MotionGraphicsConfiguration": { + "$ref": "#/definitions/AWS::MediaLive::Channel.MotionGraphicsConfiguration" + }, "NielsenConfiguration": { "$ref": "#/definitions/AWS::MediaLive::Channel.NielsenConfiguration" }, @@ -72041,6 +72301,11 @@ }, "type": "object" }, + "AWS::MediaLive::Channel.HtmlMotionGraphicsSettings": { + "additionalProperties": false, + "properties": {}, + "type": "object" + }, "AWS::MediaLive::Channel.InputAttachment": { "additionalProperties": false, "properties": { @@ -72409,6 +72674,27 @@ "properties": {}, "type": "object" }, + "AWS::MediaLive::Channel.MotionGraphicsConfiguration": { + "additionalProperties": false, + "properties": { + "MotionGraphicsInsertion": { + "type": "string" + }, + "MotionGraphicsSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.MotionGraphicsSettings" + } + }, + "type": "object" + }, + "AWS::MediaLive::Channel.MotionGraphicsSettings": { + "additionalProperties": false, + "properties": { + "HtmlMotionGraphicsSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.HtmlMotionGraphicsSettings" + } + }, + "type": "object" + }, "AWS::MediaLive::Channel.Mp2Settings": { "additionalProperties": false, "properties": { @@ -73104,6 +73390,9 @@ "ColorSpace": { "type": "string" }, + "ColorSpaceSettings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings" + }, "ColorSpaceUsage": { "type": "string" }, @@ -73113,6 +73402,15 @@ }, "type": "object" }, + "AWS::MediaLive::Channel.VideoSelectorColorSpaceSettings": { + "additionalProperties": false, + "properties": { + "Hdr10Settings": { + "$ref": "#/definitions/AWS::MediaLive::Channel.Hdr10Settings" + } + }, + "type": "object" + }, "AWS::MediaLive::Channel.VideoSelectorPid": { "additionalProperties": false, "properties": {