Skip to content

Commit

Permalink
Amazon Redshift Update: Add new fields for additional information abo…
Browse files Browse the repository at this point in the history
…ut VPC endpoint for clusters with reallocation enabled, and a new field for total storage capacity for all clusters.
  • Loading branch information
AWS committed Mar 18, 2021
1 parent 1d36257 commit 17536b6
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .changes/next-release/feature-AmazonRedshift-3fba9ed.json
@@ -0,0 +1,6 @@
{
"type": "feature",
"category": "Amazon Redshift",
"contributor": "",
"description": "Add new fields for additional information about VPC endpoint for clusters with reallocation enabled, and a new field for total storage capacity for all clusters."
}
Expand Up @@ -2231,6 +2231,10 @@
"ClusterNamespaceArn":{
"shape":"String",
"documentation":"<p>The namespace Amazon Resource Name (ARN) of the cluster.</p>"
},
"TotalStorageCapacityInMegaBytes":{
"shape":"LongOptional",
"documentation":"<p>The total storage capacity of the cluster in megabytes. </p>"
}
},
"documentation":"<p>Describes a cluster.</p>",
Expand Down Expand Up @@ -2982,7 +2986,7 @@
},
"AutomatedSnapshotRetentionPeriod":{
"shape":"IntegerOptional",
"documentation":"<p>The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with <a>CreateClusterSnapshot</a>. </p> <p>Default: <code>1</code> </p> <p>Constraints: Must be a value from 0 to 35.</p>"
"documentation":"<p>The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with <a>CreateClusterSnapshot</a>. </p> <p>You can't disable automated snapshots for RA3 node types. Set the automated retention period from 1-35 days.</p> <p>Default: <code>1</code> </p> <p>Constraints: Must be a value from 0 to 35.</p>"
},
"ManualSnapshotRetentionPeriod":{
"shape":"IntegerOptional",
Expand Down Expand Up @@ -5653,7 +5657,7 @@
},
"AutomatedSnapshotRetentionPeriod":{
"shape":"IntegerOptional",
"documentation":"<p>The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with <a>CreateClusterSnapshot</a>. </p> <p>If you decrease the automated snapshot retention period from its current value, existing automated snapshots that fall outside of the new retention period will be immediately deleted.</p> <p>Default: Uses existing setting.</p> <p>Constraints: Must be a value from 0 to 35.</p>"
"documentation":"<p>The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with <a>CreateClusterSnapshot</a>. </p> <p>If you decrease the automated snapshot retention period from its current value, existing automated snapshots that fall outside of the new retention period will be immediately deleted.</p> <p>You can't disable automated snapshots for RA3 node types. Set the automated retention period from 1-35 days.</p> <p>Default: Uses existing setting.</p> <p>Constraints: Must be a value from 0 to 35.</p>"
},
"ManualSnapshotRetentionPeriod":{
"shape":"IntegerOptional",
Expand Down Expand Up @@ -5958,6 +5962,35 @@
}
}
},
"NetworkInterface":{
"type":"structure",
"members":{
"NetworkInterfaceId":{
"shape":"String",
"documentation":"<p>The network interface identifier. </p>"
},
"SubnetId":{
"shape":"String",
"documentation":"<p>The subnet identifier. </p>"
},
"PrivateIpAddress":{
"shape":"String",
"documentation":"<p>The IPv4 address of the network interface within the subnet. </p>"
},
"AvailabilityZone":{
"shape":"String",
"documentation":"<p>The Availability Zone. </p>"
}
},
"documentation":"<p>Describes a network interface. </p>"
},
"NetworkInterfaceList":{
"type":"list",
"member":{
"shape":"NetworkInterface",
"locationName":"NetworkInterface"
}
},
"NodeConfigurationOption":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -6124,7 +6157,7 @@
},
"ParameterValue":{
"shape":"String",
"documentation":"<p>The value of the parameter.</p>"
"documentation":"<p>The value of the parameter. If <code>ParameterName</code> is <code>wlm_json_configuration</code>, then the maximum size of <code>ParameterValue</code> is 8000 characters.</p>"
},
"Description":{
"shape":"String",
Expand Down Expand Up @@ -6760,7 +6793,7 @@
},
"AutomatedSnapshotRetentionPeriod":{
"shape":"IntegerOptional",
"documentation":"<p>The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with <a>CreateClusterSnapshot</a>. </p> <p>Default: The value selected for the cluster from which the snapshot was taken.</p> <p>Constraints: Must be a value from 0 to 35.</p>"
"documentation":"<p>The number of days that automated snapshots are retained. If the value is 0, automated snapshots are disabled. Even if automated snapshots are disabled, you can still create manual snapshots when you want with <a>CreateClusterSnapshot</a>. </p> <p>You can't disable automated snapshots for RA3 node types. Set the automated retention period from 1-35 days.</p> <p>Default: The value selected for the cluster from which the snapshot was taken.</p> <p>Constraints: Must be a value from 0 to 35.</p>"
},
"ManualSnapshotRetentionPeriod":{
"shape":"IntegerOptional",
Expand Down Expand Up @@ -8280,6 +8313,14 @@
"VpcEndpointId":{
"shape":"String",
"documentation":"<p>The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.</p>"
},
"VpcId":{
"shape":"String",
"documentation":"<p>The VPC identifier that the endpoint is associated. </p>"
},
"NetworkInterfaces":{
"shape":"NetworkInterfaceList",
"documentation":"<p>One or more network interfaces of the endpoint. Also known as an interface endpoint. </p>"
}
},
"documentation":"<p>The connection endpoint for connecting an Amazon Redshift cluster through the proxy.</p>"
Expand Down

0 comments on commit 17536b6

Please sign in to comment.