Show / Hide Table of Contents

Class CfnQueueInlinePolicyProps

Properties for defining a CfnQueueInlinePolicy.

Inheritance
object
CfnQueueInlinePolicyProps
Implements
ICfnQueueInlinePolicyProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SQS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnQueueInlinePolicyProps : ICfnQueueInlinePolicyProps
Syntax (vb)
Public Class CfnQueueInlinePolicyProps Implements ICfnQueueInlinePolicyProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queueinlinepolicy.html

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.SQS;

             var policyDocument;

             var cfnQueueInlinePolicyProps = new CfnQueueInlinePolicyProps {
                 PolicyDocument = policyDocument,
                 Queue = "queue"
             };

Synopsis

Constructors

CfnQueueInlinePolicyProps()

Properties for defining a CfnQueueInlinePolicy.

Properties

PolicyDocument

A policy document that contains the permissions for the specified Amazon SQS queues.

Queue

The URLs of the queues to which you want to add the policy.

Constructors

CfnQueueInlinePolicyProps()

Properties for defining a CfnQueueInlinePolicy.

public CfnQueueInlinePolicyProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queueinlinepolicy.html

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.SQS;

             var policyDocument;

             var cfnQueueInlinePolicyProps = new CfnQueueInlinePolicyProps {
                 PolicyDocument = policyDocument,
                 Queue = "queue"
             };

Properties

PolicyDocument

A policy document that contains the permissions for the specified Amazon SQS queues.

public object PolicyDocument { get; set; }
Property Value

object

Remarks

For more information about Amazon SQS policies, see Using custom policies with the Amazon SQS access policy language in the Amazon SQS Developer Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queueinlinepolicy.html#cfn-sqs-queueinlinepolicy-policydocument

Queue

The URLs of the queues to which you want to add the policy.

public string Queue { get; set; }
Property Value

string

Remarks

You can use the Ref function to specify an AWS::SQS::Queue resource.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queueinlinepolicy.html#cfn-sqs-queueinlinepolicy-queue

Implements

ICfnQueueInlinePolicyProps
Back to top Generated by DocFX