CreateResourceShareRequest

public struct CreateResourceShareRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Indicates whether principals outside your AWS organization can be associated with a resource share.

    Declaration

    Swift

    public let allowExternalPrincipals: Bool?
  • A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    Declaration

    Swift

    public let clientToken: String?
  • The name of the resource share.

    Declaration

    Swift

    public let name: String
  • The ARNs of the permissions to associate with the resource share. If you do not specify an ARN for the permission, AWS RAM automatically attaches the default version of the permission for each resource type.

    Declaration

    Swift

    public let permissionArns: [String]?
  • The principals to associate with the resource share. The possible values are IDs of AWS accounts, the ARN of an OU or organization from AWS Organizations.

    Declaration

    Swift

    public let principals: [String]?
  • The Amazon Resource Names (ARN) of the resources to associate with the resource share.

    Declaration

    Swift

    public let resourceArns: [String]?
  • One or more tags.

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

    public init(allowExternalPrincipals: Bool? = nil, clientToken: String? = nil, name: String, permissionArns: [String]? = nil, principals: [String]? = nil, resourceArns: [String]? = nil, tags: [Tag]? = nil)