Class: Aws::PcaConnectorAd::Types::ApplicationPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::PcaConnectorAd::Types::ApplicationPolicy
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-pcaconnectorad/types.rb
Overview
Note:
ApplicationPolicy is a union - when making an API calls you must set exactly one of the members.
Note:
ApplicationPolicy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ApplicationPolicy corresponding to the set member.
Application policies describe what the certificate can be used for.
Direct Known Subclasses
Defined Under Namespace
Classes: PolicyObjectIdentifier, PolicyType, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#policy_object_identifier ⇒ String
The object identifier (OID) of an application policy.
-
#policy_type ⇒ String
The type of application policy.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#policy_object_identifier ⇒ String
The object identifier (OID) of an application policy.
188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 188 class ApplicationPolicy < Struct.new( :policy_object_identifier, :policy_type, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class PolicyObjectIdentifier < ApplicationPolicy; end class PolicyType < ApplicationPolicy; end class Unknown < ApplicationPolicy; end end |
#policy_type ⇒ String
The type of application policy
188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 188 class ApplicationPolicy < Struct.new( :policy_object_identifier, :policy_type, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class PolicyObjectIdentifier < ApplicationPolicy; end class PolicyType < ApplicationPolicy; end class Unknown < ApplicationPolicy; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
188 189 190 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 188 def unknown @unknown end |