Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(kinesisfirehose-alpha): replacedestinations property with destination and change type from array to single IDestination #31630

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,9 @@ export enum StreamEncryptionType {
*/
export interface DeliveryStreamProps {
/**
* The destinations that this delivery stream will deliver data to.
*
* Only a singleton array is supported at this time.
* The destination that this delivery stream will deliver data to.
*/
readonly destinations: IDestination[];
readonly destination: IDestination;

/**
* A name for the delivery stream.
Expand Down Expand Up @@ -324,10 +322,6 @@ export class DeliveryStream extends DeliveryStreamBase {

this._role = props.role;

if (props.destinations.length !== 1) {
throw new Error(`Only one destination is allowed per delivery stream, given ${props.destinations.length}`);
}

if (props.encryption?.encryptionKey || props.sourceStream) {
this._role = this._role ?? new iam.Role(this, 'Service Role', {
assumedBy: new iam.ServicePrincipal('firehose.amazonaws.com'),
Expand Down Expand Up @@ -369,7 +363,7 @@ export class DeliveryStream extends DeliveryStreamBase {
readStreamGrant = props.sourceStream.grantRead(this._role);
}

const destinationConfig = props.destinations[0].bind(this, {});
const destinationConfig = props.destination.bind(this, {});

const resource = new CfnDeliveryStream(this, 'Resource', {
deliveryStreamEncryptionConfigurationInput: encryptionConfig,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('delivery stream', () => {

test('creates stream with default values', () => {
new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

Template.fromStack(stack).hasResourceProperties('AWS::KinesisFirehose::DeliveryStream', {
Expand All @@ -63,7 +63,7 @@ describe('delivery stream', () => {

test('creates stream with events target V2 class', () => {
const stream = new firehose.DeliveryStream(stack, 'DeliveryStream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

new events.Rule(stack, 'rule', {
Expand Down Expand Up @@ -102,7 +102,7 @@ describe('delivery stream', () => {
});

const deliveryStream = new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
role: role,
});

Expand All @@ -111,7 +111,7 @@ describe('delivery stream', () => {

test('not providing sourceStream or encryptionKey creates only one role (used for S3 destination)', () => {
new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

Template.fromStack(stack).hasResourceProperties('AWS::IAM::Role', {
Expand All @@ -133,7 +133,7 @@ describe('delivery stream', () => {
const sourceStream = new kinesis.Stream(stack, 'Source Stream');

new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
sourceStream: sourceStream,
});

Expand All @@ -156,7 +156,7 @@ describe('delivery stream', () => {
const key = new kms.Key(stack, 'Key');

new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
encryption: StreamEncryption.customerManagedKey(key),
});

Expand All @@ -179,7 +179,7 @@ describe('delivery stream', () => {
const sourceStream = new kinesis.Stream(stack, 'Source Stream');

new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
sourceStream: sourceStream,
role: deliveryStreamRole,
});
Expand Down Expand Up @@ -215,7 +215,7 @@ describe('delivery stream', () => {

test('requesting customer-owned encryption creates key and configuration', () => {
new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
encryption: firehose.StreamEncryption.customerManagedKey(),
role: deliveryStreamRole,
});
Expand Down Expand Up @@ -251,7 +251,7 @@ describe('delivery stream', () => {
const key = new kms.Key(stack, 'Key');

new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
encryption: StreamEncryption.customerManagedKey(key),
role: deliveryStreamRole,
});
Expand Down Expand Up @@ -281,7 +281,7 @@ describe('delivery stream', () => {

test('requesting AWS-owned key does not create key and creates configuration', () => {
new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
encryption: firehose.StreamEncryption.awsOwnedKey(),
role: deliveryStreamRole,
});
Expand All @@ -299,7 +299,7 @@ describe('delivery stream', () => {

test('requesting no encryption creates no configuration', () => {
new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
encryption: firehose.StreamEncryption.unencrypted(),
role: deliveryStreamRole,
});
Expand All @@ -316,17 +316,17 @@ describe('delivery stream', () => {
const sourceStream = new kinesis.Stream(stack, 'Source Stream');

expect(() => new firehose.DeliveryStream(stack, 'Delivery Stream 1', {
destinations: [mockS3Destination],
destination: mockS3Destination,
encryption: firehose.StreamEncryption.awsOwnedKey(),
sourceStream,
})).toThrowError('Requested server-side encryption but delivery stream source is a Kinesis data stream. Specify server-side encryption on the data stream instead.');
expect(() => new firehose.DeliveryStream(stack, 'Delivery Stream 2', {
destinations: [mockS3Destination],
destination: mockS3Destination,
encryption: firehose.StreamEncryption.customerManagedKey(),
sourceStream,
})).toThrowError('Requested server-side encryption but delivery stream source is a Kinesis data stream. Specify server-side encryption on the data stream instead.');
expect(() => new firehose.DeliveryStream(stack, 'Delivery Stream 3', {
destinations: [mockS3Destination],
destination: mockS3Destination,
encryption: StreamEncryption.customerManagedKey(new kms.Key(stack, 'Key')),
sourceStream,
})).toThrowError('Requested server-side encryption but delivery stream source is a Kinesis data stream. Specify server-side encryption on the data stream instead.');
Expand All @@ -337,7 +337,7 @@ describe('delivery stream', () => {
assumedBy: new iam.ServicePrincipal('lambda.amazonaws.com'),
});
const deliveryStream = new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

deliveryStream.grant(role, 'firehose:PutRecord');
Expand All @@ -360,7 +360,7 @@ describe('delivery stream', () => {
assumedBy: new iam.ServicePrincipal('lambda.amazonaws.com'),
});
const deliveryStream = new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

deliveryStream.grantPutRecords(role);
Expand All @@ -385,7 +385,7 @@ describe('delivery stream', () => {
const dependableId = stack.resolve((Node.of(dependable).defaultChild as cdk.CfnResource).logicalId);

new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

Template.fromStack(stack).hasResource('AWS::KinesisFirehose::DeliveryStream', {
Expand All @@ -396,18 +396,9 @@ describe('delivery stream', () => {
});
});

test('supplying 0 or multiple destinations throws', () => {
expect(() => new firehose.DeliveryStream(stack, 'No Destinations', {
destinations: [],
})).toThrowError(/Only one destination is allowed per delivery stream/);
expect(() => new firehose.DeliveryStream(stack, 'Too Many Destinations', {
destinations: [mockS3Destination, mockS3Destination],
})).toThrowError(/Only one destination is allowed per delivery stream/);
});

test('creating new stream should return IAM role when calling getter for grantPrincipal (backwards compatibility)', () => {
const deliveryStream = new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});
expect(deliveryStream.grantPrincipal).toBeInstanceOf(iam.Role);
});
Expand All @@ -418,7 +409,7 @@ describe('delivery stream', () => {
beforeEach(() => {
stack = new cdk.Stack(undefined, undefined, { env: { account: '000000000000', region: 'us-west-1' } });
deliveryStream = new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});
});

Expand Down Expand Up @@ -516,7 +507,7 @@ describe('delivery stream', () => {
const vpc = new ec2.Vpc(stack, 'VPC');
const securityGroup = new ec2.SecurityGroup(stack, 'Security Group', { vpc });
const deliveryStream = new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

securityGroup.connections.allowFrom(deliveryStream, ec2.Port.allTcp());
Expand All @@ -542,7 +533,7 @@ describe('delivery stream', () => {
const vpc = new ec2.Vpc(stack, 'VPC');
const securityGroup = new ec2.SecurityGroup(stack, 'Security Group', { vpc });
const deliveryStream = new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

securityGroup.connections.allowFrom(deliveryStream, ec2.Port.allTcp());
Expand All @@ -558,10 +549,10 @@ describe('delivery stream', () => {

test('only adds one Firehose IP address mapping to stack even if multiple delivery streams defined', () => {
new firehose.DeliveryStream(stack, 'Delivery Stream 1', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});
new firehose.DeliveryStream(stack, 'Delivery Stream 2', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

Template.fromStack(stack).hasMapping('*', {
Expand All @@ -573,7 +564,7 @@ describe('delivery stream', () => {

test('can add tags', () => {
const deliveryStream = new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

cdk.Tags.of(deliveryStream).add('tagKey', 'tagValue');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ const mockS3Destination: firehose.IDestination = {
const sourceStream = new kinesis.Stream(stack, 'Source Stream');

new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
sourceStream,
});

new firehose.DeliveryStream(stack, 'Delivery Stream No Source Or Encryption Key', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

app.synth();
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ const key = new kms.Key(stack, 'Key', {
});

new firehose.DeliveryStream(stack, 'Delivery Stream', {
destinations: [mockS3Destination],
destination: mockS3Destination,
encryption: firehose.StreamEncryption.customerManagedKey(key),
});

new firehose.DeliveryStream(stack, 'Delivery Stream No Source Or Encryption Key', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

app.synth();
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const mockS3Destination: firehose.IDestination = {
};

const stream = new firehose.DeliveryStream(stack, 'Delivery Stream No Source Or Encryption Key', {
destinations: [mockS3Destination],
destination: mockS3Destination,
});

new events.Rule(stack, 'rule', {
Expand Down