Class CfnPolicyPrincipalAttachmentMixinProps
Properties for CfnPolicyPrincipalAttachmentPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnPolicyPrincipalAttachmentMixinProps : ICfnPolicyPrincipalAttachmentMixinProps
Syntax (vb)
Public Class CfnPolicyPrincipalAttachmentMixinProps Implements ICfnPolicyPrincipalAttachmentMixinProps
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.Mixins.Preview.AWS.IoT.Mixins;
var cfnPolicyPrincipalAttachmentMixinProps = new CfnPolicyPrincipalAttachmentMixinProps {
PolicyName = "policyName",
Principal = "principal"
};
Synopsis
Constructors
| CfnPolicyPrincipalAttachmentMixinProps() | Properties for CfnPolicyPrincipalAttachmentPropsMixin. |
Properties
| PolicyName | The name of the AWS IoT policy. |
| Principal | The principal, which can be a certificate ARN (as returned from the |
Constructors
CfnPolicyPrincipalAttachmentMixinProps()
Properties for CfnPolicyPrincipalAttachmentPropsMixin.
public CfnPolicyPrincipalAttachmentMixinProps()
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.Mixins.Preview.AWS.IoT.Mixins;
var cfnPolicyPrincipalAttachmentMixinProps = new CfnPolicyPrincipalAttachmentMixinProps {
PolicyName = "policyName",
Principal = "principal"
};
Properties
PolicyName
The name of the AWS IoT policy.
public string? PolicyName { get; set; }
Property Value
Remarks
Principal
The principal, which can be a certificate ARN (as returned from the CreateCertificate operation) or an Amazon Cognito ID.
public string? Principal { get; set; }