package awsivs import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnPlaybackKeyPair`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnPlaybackKeyPairProps := &CfnPlaybackKeyPairProps{ // Name: jsii.String("name"), // PublicKeyMaterial: jsii.String("publicKeyMaterial"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html // type CfnPlaybackKeyPairProps struct { // Playback-key-pair name. // // The value does not need to be unique. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html#cfn-ivs-playbackkeypair-name // Name *string `field:"optional" json:"name" yaml:"name"` // The public portion of a customer-generated key pair. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html#cfn-ivs-playbackkeypair-publickeymaterial // PublicKeyMaterial *string `field:"optional" json:"publicKeyMaterial" yaml:"publicKeyMaterial"` // An array of key-value pairs to apply to this resource. // // For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html#cfn-ivs-playbackkeypair-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }