Class CfnBucket.OwnershipControlsProperty
Specifies the container element for Object Ownership rules.
Inheritance
System.Object
CfnBucket.OwnershipControlsProperty
Implements
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class OwnershipControlsProperty : Object, CfnBucket.IOwnershipControlsProperty
Syntax (vb)
Public Class OwnershipControlsProperty
Inherits Object
Implements CfnBucket.IOwnershipControlsProperty
Remarks
S3 Object Ownership is an Amazon S3 bucket-level setting that you can use to disable access control lists (ACLs) and take ownership of every object in your bucket, simplifying access management for data stored in Amazon S3. For more information, see Controlling ownership of objects and disabling ACLs in the Amazon S3 User Guide .
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.S3;
var ownershipControlsProperty = new OwnershipControlsProperty {
Rules = new [] { new OwnershipControlsRuleProperty {
ObjectOwnership = "objectOwnership"
} }
};
Synopsis
Constructors
OwnershipControlsProperty() |
Properties
Rules | Specifies the container element for Object Ownership rules. |
Constructors
OwnershipControlsProperty()
public OwnershipControlsProperty()
Properties
Rules
Specifies the container element for Object Ownership rules.
public object Rules { get; set; }
Property Value
System.Object