Class CfnSpotFleet.IamInstanceProfileSpecificationProperty
Describes an IAM instance profile.
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSpotFleet.IamInstanceProfileSpecificationProperty : CfnSpotFleet.IIamInstanceProfileSpecificationProperty
Syntax (vb)
Public Class CfnSpotFleet.IamInstanceProfileSpecificationProperty Implements CfnSpotFleet.IIamInstanceProfileSpecificationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var iamInstanceProfileSpecificationProperty = new IamInstanceProfileSpecificationProperty {
Arn = "arn"
};
Synopsis
Constructors
IamInstanceProfileSpecificationProperty() | Describes an IAM instance profile. |
Properties
Arn | The Amazon Resource Name (ARN) of the instance profile. |
Constructors
IamInstanceProfileSpecificationProperty()
Describes an IAM instance profile.
public IamInstanceProfileSpecificationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var iamInstanceProfileSpecificationProperty = new IamInstanceProfileSpecificationProperty {
Arn = "arn"
};
Properties
Arn
The Amazon Resource Name (ARN) of the instance profile.
public string? Arn { get; set; }