Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
41b2a51
feat(redshift-alpha): issue #31634: add support for RA3.large node type
AsadBinImtiaz Oct 3, 2024
a114c31
feat(redshift-alpha): issue #31634: added integration tests for redsh…
AsadBinImtiaz Oct 4, 2024
9c311a3
feat(redshift-alpha): issue #31634: merge conflict resolved
AsadBinImtiaz Oct 4, 2024
675379e
Merge branch 'main' of github.com:AsadBinImtiaz/aws-cdk into feature/…
AsadBinImtiaz Oct 21, 2024
42983e9
Merge branch 'main' of github.com:AsadBinImtiaz/aws-cdk into feature/…
AsadBinImtiaz Oct 22, 2024
cae3123
Merge branch 'main' of github.com:AsadBinImtiaz/aws-cdk into feature/…
AsadBinImtiaz Oct 31, 2024
19149c1
Merge branch 'main' of github.com:AsadBinImtiaz/aws-cdk into feature/…
AsadBinImtiaz Nov 8, 2024
5399e65
feat(redshift-alpha): issue #31634: add support for RA3.large node type
AsadBinImtiaz Nov 8, 2024
71f61f6
Merge branch 'main' into feature/support-ra3-large-node-type
AsadBinImtiaz Nov 8, 2024
d786bd2
Update packages/@aws-cdk/aws-redshift-alpha/test/integ.cluster-nodety…
AsadBinImtiaz Nov 29, 2024
79f899e
Merge branch 'main' into feature/support-ra3-large-node-type
AsadBinImtiaz Nov 29, 2024
5682baf
feat(redshift-alpha): issue #31634: changes based on pr comments
AsadBinImtiaz Nov 29, 2024
aa1a754
Merge branch 'main' into feature/support-ra3-large-node-type
mergify[bot] Dec 7, 2024
75b9e01
Merge branch 'main' into feature/support-ra3-large-node-type
mergify[bot] Dec 9, 2024
a414361
Merge branch 'main' into feature/support-ra3-large-node-type
mergify[bot] Dec 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/@aws-cdk/aws-redshift-alpha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,7 @@ as it's a fast operation and typically completes in minutes. Elastic resize is o
* dc2.8xlarge
* ds2.xlarge
* ds2.8xlarge
* ra3.large
* ra3.xlplus
* ra3.4xlarge
* ra3.16xlarge
Expand Down
5 changes: 5 additions & 0 deletions packages/@aws-cdk/aws-redshift-alpha/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ export enum NodeType {
*/
DC2_8XLARGE = 'dc2.8xlarge',

/**
* ra3.large
*/
RA3_LARGE = 'ra3.large',

/**
* ra3.xlplus
*/
Expand Down
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-redshift-alpha/test/cluster.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ describe('multi AZ cluster', () => {
masterPassword: cdk.SecretValue.unsafePlainText('tooshort'),
},
vpc,
nodeType: NodeType.RA3_XLPLUS,
nodeType: NodeType.RA3_LARGE,
multiAz: true,
});

Expand All @@ -747,7 +747,7 @@ describe('multi AZ cluster', () => {
AutomatedSnapshotRetentionPeriod: 1,
Encrypted: true,
NumberOfNodes: 2,
NodeType: 'ra3.xlplus',
NodeType: 'ra3.large',
DBName: 'default_db',
PubliclyAccessible: false,
ClusterSubnetGroupName: { Ref: 'RedshiftSubnetsDFE70E0A' },
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading