interface DefaultApplicationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLiftStreams.Mixins.CfnStreamGroupPropsMixin.DefaultApplicationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgameliftstreams/mixins#CfnStreamGroupPropsMixin_DefaultApplicationProperty |
Java | software.amazon.awscdk.mixins.preview.services.gameliftstreams.mixins.CfnStreamGroupPropsMixin.DefaultApplicationProperty |
Python | aws_cdk.mixins_preview.aws_gameliftstreams.mixins.CfnStreamGroupPropsMixin.DefaultApplicationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_gameliftstreams » mixins » CfnStreamGroupPropsMixin » DefaultApplicationProperty |
Represents the default Amazon GameLift Streams application that a stream group hosts.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as gameliftstreams_mixins } from '@aws-cdk/mixins-preview/aws-gameliftstreams';
const defaultApplicationProperty: gameliftstreams_mixins.CfnStreamGroupPropsMixin.DefaultApplicationProperty = {
arn: 'arn',
id: 'id',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | An Amazon Resource Name (ARN) that uniquely identifies the application resource. Example ARN: arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6 . |
| id? | string | An ID that uniquely identifies the application resource. |
arn?
Type:
string
(optional)
An Amazon Resource Name (ARN) that uniquely identifies the application resource. Example ARN: arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6 .
id?
Type:
string
(optional)
An ID that uniquely identifies the application resource.
Example ID: a-9ZY8X7Wv6 .

.NET
Go
Java
Python
TypeScript